Files
kotlin/compiler/testData/codegen/assign.jet
2011-10-20 16:21:18 +02:00

6 lines
57 B
Plaintext

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