nitcc: detect S/R even if R/R conflict as a solution is to shift in case of S/R/R
[nit.git] / tests / shootout_nsieve_bytes_alt.nit
index ab5c703..b5ad0cb 100644 (file)
@@ -55,7 +55,7 @@ end
 
 fun test(n: Int)
 do
-       var m = 10000.lshift(n)
+       var m = 10000 << n
        print("Primes up to {m} {nsieve(m)}")
 end