Files
kotlin-fork/compiler/testData/diagnostics/tests/external/noExternalModifierInheritance.kt
T

10 lines
131 B
Kotlin
Vendored

// FIR_IDENTICAL
open class A {
open external fun foo()
}
class B : A() {
override fun foo() {
super.foo()
}
}