Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/Condition.kt
T
2013-12-11 19:53:50 +04:00

6 lines
162 B
Kotlin

fun foo(x: Int?): Boolean {
val result = ((x!! == 0) && ((<!DEBUG_INFO_AUTOCAST!>x<!> : Int) == 0))
<!DEBUG_INFO_AUTOCAST!>x<!> : Int
return result
}