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