Revert "Update test data as operator 'mod' became deprecated"

This reverts commit 040f4e90ce.
This commit is contained in:
Mikhail Zarechenskiy
2016-12-12 17:28:28 +03:00
parent 42d867b3bf
commit e67543e08e
7 changed files with 21 additions and 21 deletions
@@ -19,8 +19,8 @@ fun test() {
fooLong(1 / 1)
fooShort(1 / 1)
fooInt(1 <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 1)
fooByte(1 <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 1)
fooLong(1 <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 1)
fooShort(1 <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 1)
fooInt(1 % 1)
fooByte(1 % 1)
fooLong(1 % 1)
fooShort(1 % 1)
}