10 lines
159 B
Kotlin
Vendored
10 lines
159 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
class Nested {
|
|
fun bar() = <!UNRESOLVED_REFERENCE!>foo<!>()
|
|
}
|
|
} |