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