Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/beforeSmartCastWithIs.kt
T
2015-03-11 23:34:00 +03:00

6 lines
91 B
Kotlin

// "Create function 'foo'" "true"
fun test(o: Any) {
if (o is String) <caret>foo(o)
}