mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
22 lines
463 B
Java
22 lines
463 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);
|
|
|
|
void dummy(); // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Middle<E> extends Super<E> {
|
|
}
|
|
|
|
public interface Sub extends Middle<String> {
|
|
void foo(String p);
|
|
}
|
|
}
|