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