Files
kotlin-fork/idea/testData/codegen/assign.jet
T

6 lines
57 B
Plaintext

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