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