Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/isCheckWithSelector.kt
T

5 lines
96 B
Kotlin
Vendored

class My(val x: Int)
fun foo(arg: Any?): Int {
return if (<caret>arg is My) arg.x else 42
}