Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/smartCastWithNullCheck.kt.after
T
2019-11-13 08:37:25 +09:00

11 lines
153 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun test(s: String?) {
if (s == null) return
foo(s)
}
fun foo(s: String) {
TODO("Not yet implemented")
}