12 lines
148 B
Kotlin
Vendored
12 lines
148 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// PROBLEM: none
|
|
|
|
class Foo {
|
|
val s = ""
|
|
|
|
fun test() {
|
|
Foo().apply {
|
|
<caret>this@Foo.s
|
|
}
|
|
}
|
|
} |