e2dbeae85e
also add some tests for bugs with unreachable code handling and variables
10 lines
114 B
Kotlin
10 lines
114 B
Kotlin
var b = true
|
|
|
|
fun main(args: Array<String>) {
|
|
var x = 1
|
|
if (b) {
|
|
var x = 2
|
|
}
|
|
println(x)
|
|
}
|