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