mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
14 lines
176 B
Kotlin
Vendored
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
|
|
}
|
|
}
|