package test; import java.util.*; public interface MutableToReadOnly { public interface Super { void foo(List p); void dummy(); // to avoid loading as SAM interface } public interface Sub extends Super { void foo(List p); } }