package test; public interface InheritVararg { public interface Super { void foo(String... p); } public interface Sub extends Super { void foo(String[] p); } }