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