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

12 lines
144 B
Kotlin
Vendored

// FILE: f.kt
class A() {
fun foo() : Unit {
this@A
this@a
this
}
val x = this@A.foo()
val y = this.foo()
val z = foo()
}