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