We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c3f3db commit 211f103Copy full SHA for 211f103
1 file changed
tests/tests/src/unified_ops_test.res
@@ -30,12 +30,13 @@ let pow_overflow = 2147483647 ** 2
30
let bxor_int = (a, b) => a ^ b
31
let bxor_bigint = (a: bigint, b) => a ^ b
32
33
-let shl = 1 << 2
34
-let shr = 8 >> 2
35
-let ushr = -1 >>> 1
+let shl_int = 1 << 2
+let shr_int = 8 >> 2
+let ushr_int = -1 >>> 1
36
37
let lhs_shift = (a: int, b) => a << b
38
let rhs_shift = (a, b: int) => a << b
39
let unknown_shift = (a, b) => a << b
40
41
-let bigint_shift = 1n << 2n
+let shl_bigint = 1n << 2n
42
+let shr_bigint = 8n >> 2n
0 commit comments