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