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

5 lines
107 B
Kotlin
Vendored

class My(val x: Int)
fun foo(arg: Any?): Int {
return if (<caret>arg is My) arg.x.hashCode() else 42
}