Files
kotlin-fork/idea/testData/intentions/branched/elvisToIfThen/fakeSafeCast.kt
T

4 lines
84 B
Kotlin
Vendored

class My(val x: Int?)
fun foo(arg: Any) {
val y = (arg as? My)?.x <caret>?: 42
}