You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""
Test of integer overflow.
"""
"""
$output:
9223372036854775807
-'..--).0-*(+,))+(0(
"""
x = 9223372036854775807
print(x)
x += 1
print(x)
currently passes. Probably not a high priority. But if we want an error at some point, and test coverage for similar things, let's track that in this issue.
The text was updated successfully, but these errors were encountered:
With:
Running
c4test
with this.c4m
file:currently passes. Probably not a high priority. But if we want an error at some point, and test coverage for similar things, let's track that in this issue.
The text was updated successfully, but these errors were encountered: