Skip to content

Commit 8402475

Browse files
gwansikkcometkim
authored andcommitted
fix: remove bigint from lsr
1 parent 211f103 commit 8402475

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

compiler/ml/unified_ops.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ let entries =
183183
int = Plsrint;
184184
bool = None;
185185
float = None;
186-
bigint = Some Pasrbigint;
186+
bigint = None;
187187
string = None;
188188
};
189189
};

tests/tests/src/unified_ops_test.res

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ let rhs_shift = (a, b: int) => a << b
3939
let unknown_shift = (a, b) => a << b
4040

4141
let shl_bigint = 1n << 2n
42-
let shr_bigint = 8n >> 2n

0 commit comments

Comments
 (0)