2ee8f1c454
#KT-5362 Fixed #KT-8814 Fixed
9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
class Nested {
|
|
fun bar() = <!UNRESOLVED_REFERENCE!>foo<!>()
|
|
}
|
|
} |