Files
kotlin-fork/idea/testData/inspectionsLocal/simpleRedundantLet/extensionCall.kt
T
2020-03-02 10:21:47 +07:00

6 lines
92 B
Kotlin
Vendored

// WITH_RUNTIME
fun String.foo() {}
fun test(s: String?) {
s?.let<caret> { it.foo() }
}