1 parent c070ff2 commit 4290155Copy full SHA for 4290155
1 file changed
tests/basics/int-long.py
@@ -37,3 +37,10 @@
37
print(a)
38
a >>= 1
39
40
+
41
+# Test referential integrity of long ints
42
+a = 0x1ffffffff
43
+b = a
44
+a += 1
45
+print(a)
46
+print(b)
0 commit comments