12 lines
144 B
Kotlin
Vendored
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()
|
|
} |