Files
kotlin/compiler/testData/diagnostics/tests/inner/outerProtectedMember.kt
2015-05-12 19:43:17 +02:00

14 lines
176 B
Kotlin
Vendored

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