Files
kotlin/compiler/testData/codegen/assign.kt
2013-01-24 21:12:27 +04:00

6 lines
57 B
Kotlin

fun f(): Int {
var x: Int = 1
x = x + 1
return x
}