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