mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
13 lines
195 B
Java
13 lines
195 B
Java
package test;
|
|
|
|
public interface InheritVararg {
|
|
|
|
public interface Super {
|
|
void foo(String... p);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(String[] p);
|
|
}
|
|
}
|