12 lines
150 B
Kotlin
Vendored
12 lines
150 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// PROBLEM: none
|
|
|
|
class Foo {
|
|
fun test() {
|
|
Foo().apply {
|
|
<caret>this@Foo.s()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun Foo.s() {} |