Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/receiverWithSmartCast.kt
T
2018-05-11 16:05:20 +03:00

10 lines
200 B
Kotlin
Vendored

// "Create member function 'SomeObj.doSomething'" "true"
class SomeObj { }
fun doSomething(p: Any): List<Number>{
if (p is SomeObj){
p.<caret>doSomething()
}
return emptyList()
}