fun plus_eq(a: Int): Int { var b = 11 b += a return b } fun main(args: Array) { if (plus_eq(3) != 14) throw Error() }