11 lines
128 B
Kotlin
Vendored
11 lines
128 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Foo {
|
|
val s = ""
|
|
|
|
fun test() {
|
|
"".apply {
|
|
<caret>this@Foo.s
|
|
}
|
|
}
|
|
} |