Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/Condition.kt
T
2014-10-01 18:52:52 +04:00

6 lines
164 B
Kotlin

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