mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
15 lines
262 B
Java
Vendored
15 lines
262 B
Java
Vendored
package test;
|
|
|
|
public interface InheritVarargNotNull {
|
|
|
|
public interface Super {
|
|
void foo(String... p);
|
|
|
|
void dummy(); // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(String[] p);
|
|
}
|
|
}
|