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