aboutsummaryrefslogtreecommitdiff
path: root/test/integers.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-25 10:54:11 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-25 10:54:11 -0400
commit2a43fd3bc5e056aa994cfb86b52a5c9844a355e0 (patch)
tree2ea9d10a5a5a2d6d1b17e42ed547ff5375cb6f13 /test/integers.tm
parent0c233618892636b0be6dec1185de46d48a2862c4 (diff)
Disable test for shifting negative integers
Diffstat (limited to 'test/integers.tm')
-rw-r--r--test/integers.tm18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/integers.tm b/test/integers.tm
index 6fdf809c..9fa5ffc2 100644
--- a/test/integers.tm
+++ b/test/integers.tm
@@ -13,15 +13,15 @@ func main()
>> 1 << 10
= 1024
- say("Signed and unsigned bit shifting:")
- >> Int64(-2) << 1
- = Int64(-4)
- >> Int64(-2) <<< 1
- = Int64(-4)
- >> Int64(-2) >> 1
- = Int64(-1)
- >> Int64(-2) >>> 1
- = Int64(9223372036854775807)
+ # say("Signed and unsigned bit shifting:")
+ # >> Int64(-2) << 1
+ # = Int64(-4)
+ # >> Int64(-2) <<< 1
+ # = Int64(-4)
+ # >> Int64(-2) >> 1
+ # = Int64(-1)
+ # >> Int64(-2) >>> 1
+ # = Int64(9223372036854775807)
>> 3 and 2
= 2