Tests for "PLUSEQ" and "MINUSEQ"

This commit is contained in:
Konstantin Anisimov
2016-11-02 18:32:17 +03:00
committed by vvlevchenko
parent a022b7d1ab
commit ea149fab4e
5 changed files with 38 additions and 0 deletions
@@ -0,0 +1,5 @@
fun plus_eq(a: Int): Int {
var b = 11
b += a
return b
}