mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
25 lines
269 B
Kotlin
Vendored
25 lines
269 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
interface A {
|
|
void foo();
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
internal interface B : A {
|
|
fun bar() = 1
|
|
}
|
|
|
|
internal interface C : B
|
|
|
|
internal class D : C {
|
|
override fun foo() {}
|
|
}
|
|
|
|
fun box(): String {
|
|
val d = D()
|
|
d.foo()
|
|
d.bar()
|
|
return "OK"
|
|
}
|