Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/IsExpression.kt
T
2012-11-16 17:56:22 +04:00

7 lines
86 B
Kotlin

fun foo(x: Number) {
if ((x as Int) is Int) {
x : Int
}
x : Int
}