mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
11 lines
165 B
Java
11 lines
165 B
Java
package test;
|
|
|
|
public interface InheritedSimple {
|
|
public interface Super {
|
|
void foo(Runnable r);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
}
|
|
}
|