mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
15 lines
239 B
Java
Vendored
15 lines
239 B
Java
Vendored
package test;
|
|
|
|
public interface SamSubinterfaceOfTwo {
|
|
public interface Super1 {
|
|
CharSequence f();
|
|
}
|
|
|
|
public interface Super2<T> {
|
|
T f();
|
|
}
|
|
|
|
public interface Sub extends Super1, Super2<String> {
|
|
}
|
|
}
|