mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
14 lines
269 B
Java
Vendored
14 lines
269 B
Java
Vendored
package test;
|
|
|
|
public interface InheritedOverriddenAdapter {
|
|
public class Super {
|
|
public void foo(Runnable r) {
|
|
}
|
|
}
|
|
|
|
public class Sub extends Super {
|
|
public void foo(kotlin.jvm.functions.Function0<kotlin.Unit> r) {
|
|
}
|
|
}
|
|
}
|