Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/outerProtectedMember.kt
T
Alexander Udalov 8dff523858 Add some regression tests for obsolete issues
Regenerate tests
2013-01-17 17:38:46 +04:00

14 lines
172 B
Kotlin

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