13 lines
204 B
Java
13 lines
204 B
Java
package test;
|
|
|
|
public interface InheritVarargInteger {
|
|
|
|
public interface Super {
|
|
void foo(Integer... p);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(Integer[] p);
|
|
}
|
|
}
|