From 2a43fd3bc5e056aa994cfb86b52a5c9844a355e0 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 25 Apr 2025 10:54:11 -0400 Subject: Disable test for shifting negative integers --- test/integers.tm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'test') 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 -- cgit v1.2.3