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

9 lines
142 B
Kotlin
Vendored

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