Files
kotlin/compiler/testData/diagnostics/tests/inner/outerSuperClassMember.kt
2015-08-18 21:26:42 +03:00

9 lines
142 B
Kotlin
Vendored

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