Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/isCheckWithSelector.kt.after
T
2019-06-07 12:23:54 +07:00

5 lines
82 B
Plaintext
Vendored

class My(val x: Int)
fun foo(arg: Any?): Int {
return (arg as? My)?.x ?: 42
}