5 lines
101 B
Kotlin
Vendored
5 lines
101 B
Kotlin
Vendored
class My(var z: Any, val x: Int) {
|
|
fun foo() {
|
|
val y = (z as? My)?.x <caret>?: 42
|
|
}
|
|
} |