Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/isCheckWithSelectorChain.kt.after
T

6 lines
115 B
Plaintext
Vendored

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