mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
19 lines
355 B
Java
Vendored
19 lines
355 B
Java
Vendored
package test;
|
|
|
|
public interface DeeplySubstitutedClassParameter {
|
|
|
|
public interface Super<T> {
|
|
void foo(T p);
|
|
|
|
void dummy(); // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Middle<E> extends Super<E> {
|
|
void foo(E p);
|
|
}
|
|
|
|
public interface Sub extends Middle<String> {
|
|
void foo(String p);
|
|
}
|
|
}
|