mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
180 B
Java
Vendored
15 lines
180 B
Java
Vendored
interface A {
|
|
String getOk();
|
|
}
|
|
|
|
interface B {
|
|
String getOk();
|
|
}
|
|
|
|
interface C extends A, B {
|
|
}
|
|
|
|
class JavaClass implements C {
|
|
public String getOk() { return "OK"; }
|
|
}
|