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); } public interface Super2 { @KotlinSignature("fun foo(t: E)") void foo(E p); } public interface Sub extends Super1, Super2 { void foo(String p); } }