15 lines
261 B
Java
15 lines
261 B
Java
package test;
|
|
|
|
public interface InheritNotVarargPrimitive {
|
|
|
|
public interface Super {
|
|
void foo(int[] p);
|
|
|
|
void dummy(); // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(int... p);
|
|
}
|
|
}
|