Files
kotlin-fork/js/js.translator/testData/box/inheritance/fromNativeInterface.kt
T

15 lines
170 B
Kotlin
Vendored

package foo
external interface A {
val bar: Int get() = noImpl
fun foo(): String = noImpl
}
class C : A
fun box(): String {
val c = C()
return "OK"
}