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

11 lines
123 B
Kotlin
Vendored

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