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

15 lines
193 B
Kotlin
Vendored

// FIR_IDENTICAL
// KT-2100
interface I {
val x : String
}
class Foo {
protected val x : String = ""
inner class Inner : I {
override val x : String = this@Foo.x
}
}