mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
15 lines
248 B
Java
Vendored
15 lines
248 B
Java
Vendored
package test;
|
|
|
|
public interface InheritedSameAdapters {
|
|
public interface Super1 {
|
|
void foo(Runnable r);
|
|
}
|
|
|
|
public interface Super2 {
|
|
void foo(Runnable r);
|
|
}
|
|
|
|
public interface Sub extends Super1, Super2 {
|
|
}
|
|
}
|