Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/propagation/parameter/DeeplySubstitutedClassParameter2.java
2013-03-12 19:31:45 +04:00

19 lines
402 B
Java

package test;
import org.jetbrains.annotations.NotNull;
import jet.runtime.typeinfo.KotlinSignature;
public interface DeeplySubstitutedClassParameter2 {
public interface Super<T> {
@KotlinSignature("fun foo(t: T)")
void foo(T p);
}
public interface Middle<E> extends Super<E> {
}
public interface Sub extends Middle<String> {
void foo(String p);
}
}