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