From 94380f445740b1b05305d649293fabcc16a7d836 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 15 Sep 2023 12:34:28 +0200 Subject: [PATCH] Remove 64-bit-specific test Fixes #2139 --- tests/typ/compiler/ops-invalid.typ | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/typ/compiler/ops-invalid.typ b/tests/typ/compiler/ops-invalid.typ index f3a83e7a1..7e8b63eff 100644 --- a/tests/typ/compiler/ops-invalid.typ +++ b/tests/typ/compiler/ops-invalid.typ @@ -90,16 +90,6 @@ // Error: 3-10 number must be at least zero #(-1 * "") ---- -#{ - let x = 2 - for _ in range(61) { - (x) *= 2 - } - // Error: 3-17 cannot repeat this string 4611686018427387904 times - x * "abcdefgh" -} - --- // Error: 4-5 unknown variable: x #((x) = "")