11 lines
177 B
Plaintext
Vendored
11 lines
177 B
Plaintext
Vendored
class AA {
|
|
class B {
|
|
fun Int.foo() {
|
|
val a = this@AA
|
|
val b = this@B
|
|
|
|
val c = this
|
|
val c1 = this@foo
|
|
}
|
|
}
|
|
} |