Files
kotlin-fork/backend.native/tests/codegen/dataflow/scope1.kt
T
2017-10-20 18:25:05 +03:00

14 lines
159 B
Kotlin

package codegen.dataflow.scope1
import kotlin.test.*
var b = true
@Test fun runTest() {
var x = 1
if (b) {
var x = 2
}
println(x)
}