Update test data after adding operator rem to builtIns

This commit is contained in:
Mikhail Zarechenskiy
2016-12-12 17:31:30 +03:00
parent e67543e08e
commit e83568bcf3
2 changed files with 18 additions and 8 deletions
@@ -19,8 +19,13 @@ fun test() {
fooLong(1.div(1))
fooShort(1.div(1))
fooInt(1.mod(1))
fooByte(1.mod(1))
fooLong(1.mod(1))
fooShort(1.mod(1))
fooInt(1.<!DEPRECATION!>mod<!>(1))
fooByte(1.<!DEPRECATION!>mod<!>(1))
fooLong(1.<!DEPRECATION!>mod<!>(1))
fooShort(1.<!DEPRECATION!>mod<!>(1))
fooInt(1.rem(1))
fooByte(1.rem(1))
fooLong(1.rem(1))
fooShort(1.rem(1))
}