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<!>()
|
|
}
|
|
} |