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