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

10 lines
140 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun test(o: Any) {
if (o is String) foo(o)
}
fun foo(o: String) {
TODO("Not yet implemented")
}