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

5 lines
101 B
Kotlin
Vendored

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