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