Files
kotlin-fork/idea/testData/inspectionsLocal/implicitThis/nested.kt.after
T

11 lines
132 B
Plaintext
Vendored

// WITH_RUNTIME
class Foo {
fun s() = ""
fun test() {
"".apply {
<caret>this@Foo.s()
}
}
}