Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/thisInNestedClasses.kt
T

9 lines
148 B
Kotlin

class A(val a:Int) {
class B() {
val x = this@B : B
val y = this@A : A
val z = this : B
val Int.xx : Int get() = this : Int
}
}