Skip to content

Commit 211f103

Browse files
gwansikkcometkim
authored andcommitted
tests: update
1 parent 5c3f3db commit 211f103

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

tests/tests/src/unified_ops_test.res

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ let pow_overflow = 2147483647 ** 2
3030
let bxor_int = (a, b) => a ^ b
3131
let bxor_bigint = (a: bigint, b) => a ^ b
3232

33-
let shl = 1 << 2
34-
let shr = 8 >> 2
35-
let ushr = -1 >>> 1
33+
let shl_int = 1 << 2
34+
let shr_int = 8 >> 2
35+
let ushr_int = -1 >>> 1
3636

3737
let lhs_shift = (a: int, b) => a << b
3838
let rhs_shift = (a, b: int) => a << b
3939
let unknown_shift = (a, b) => a << b
4040

41-
let bigint_shift = 1n << 2n
41+
let shl_bigint = 1n << 2n
42+
let shr_bigint = 8n >> 2n

0 commit comments

Comments
 (0)