17 lines
217 B
Kotlin
Vendored
17 lines
217 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// PROBLEM: none
|
|
|
|
class Foo {
|
|
fun test() {
|
|
Bar().apply {
|
|
"".run {
|
|
<caret>this@apply.s()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Bar
|
|
|
|
fun Foo.s() {}
|
|
fun Bar.s() {} |