Update test data as operator 'mod' became deprecated
Revert this commit after changing 'mod' to 'rem' in stdlib
This commit is contained in:
@@ -24,8 +24,8 @@ fun test() {
|
||||
if (second > 4000000)
|
||||
break
|
||||
|
||||
if (second % 2 == 0)
|
||||
sum += second
|
||||
if (second <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 2 == 0)
|
||||
sum += second
|
||||
|
||||
temp = second
|
||||
second = first + second
|
||||
|
||||
Reference in New Issue
Block a user