Files
kotlin-fork/js/js.translator/testFiles/simple/cases/assign.kt
T
2012-02-27 21:55:58 +04:00

9 lines
95 B
Kotlin

package foo
fun f(): Int {
var x: Int = 1
x = x + 1
return x
}
fun box() = f() == 2