Make tests about mod and varargs valid for 1.3 version

This commit is contained in:
Mikhail Zarechenskiy
2018-07-10 17:54:40 +03:00
parent f03dc62173
commit 857cc0f728
12 changed files with 170 additions and 63 deletions
@@ -7,7 +7,7 @@ operator fun A.plusAssign(y: Int) { x += y }
operator fun A.minusAssign(y: Int) { x -= y }
operator fun A.timesAssign(y: Int) { x *= y }
operator fun A.divAssign(y: Int) { x /= y }
operator fun A.modAssign(y: Int) { x %= y }
operator fun A.remAssign(y: Int) { x %= y }
fun box(): String {
val original = A()