15 lines
165 B
Kotlin
Vendored
15 lines
165 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Foo {
|
|
fun Bar.s() = ""
|
|
}
|
|
|
|
class Bar
|
|
|
|
fun test() {
|
|
Bar().apply {
|
|
Foo().apply apply2@ {
|
|
<caret>s()
|
|
}
|
|
}
|
|
} |