mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 15:52:05 +00:00
12 lines
225 B
Java
12 lines
225 B
Java
package test;
|
|
|
|
public interface InheritedAdapterAndDeclaration {
|
|
public interface Super {
|
|
void foo(Runnable r);
|
|
void foo(jet.Function0<jet.Unit> r);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
}
|
|
}
|