Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/outerSuperClassMember.kt
T

10 lines
159 B
Kotlin
Vendored

// FIR_IDENTICAL
open class Base {
fun foo() {}
}
class Derived : Base() {
class Nested {
fun bar() = <!UNRESOLVED_REFERENCE!>foo<!>()
}
}