Files
kotlin-fork/backend.native/tests/codegen/function/plus_eq.kt
T
2016-11-07 18:00:30 +03:00

5 lines
61 B
Kotlin

fun plus_eq(a: Int): Int {
var b = 11
b += a
return b
}