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

7 lines
73 B
Kotlin
Vendored

class Foo {
fun s() = ""
fun test() {
<caret>s()
}
}