Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/isCheckWithSelectorChain.kt.after
T
2017-12-26 18:39:47 +03:00

5 lines
89 B
Plaintext
Vendored

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