mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
227 B
Java
Vendored
14 lines
227 B
Java
Vendored
package test;
|
|
|
|
public interface InheritedOverridden {
|
|
public class Super {
|
|
public void foo(Runnable r) {
|
|
}
|
|
}
|
|
|
|
public class Sub extends Super {
|
|
public void foo(Runnable r) {
|
|
}
|
|
}
|
|
}
|