package test; import org.jetbrains.annotations.NotNull; import jet.runtime.typeinfo.KotlinSignature; public interface SubstitutedClassParameters { public interface Super1 { @KotlinSignature("fun foo(t: T)") void foo(T p); void dummy(); // to avoid loading as SAM interface } public interface Super2 { @KotlinSignature("fun foo(t: E)") void foo(E p); void dummy(); // to avoid loading as SAM interface } public interface Sub extends Super1, Super2 { void foo(String p); } }