mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
13 lines
207 B
Java
13 lines
207 B
Java
package test;
|
|
|
|
public interface InheritNotVarargInteger {
|
|
|
|
public interface Super {
|
|
void foo(Integer[] p);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(Integer... p);
|
|
}
|
|
}
|