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

6 lines
74 B
Plaintext
Vendored

// WITH_RUNTIME
fun String.foo() {}
fun test(s: String?) {
s?.foo()
}