Files
kotlin/compiler/testData/loadJava/compiledJava/singleAbstractMethod/adapter/InheritedSimple.java
2013-06-25 20:17:42 +04:00

10 lines
164 B
Java

package test;
public interface InheritedSimple {
public interface Super {
void foo(Runnable r);
}
public interface Sub extends Super {
}
}