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