Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/smartCastWithIs.kt.after

10 lines
212 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun test(o: Any) {
if (o is String) foo(o)
}
fun foo(o: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}