mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
309 B
Java
16 lines
309 B
Java
package test;
|
|
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public interface InheritNotVarargNotNull {
|
|
|
|
public interface Super {
|
|
@KotlinSignature("fun foo(p: Array<out String>)")
|
|
void foo(String[] p);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(String... p);
|
|
}
|
|
}
|