diff options
Diffstat (limited to 'tests/basics/int1.py')
-rw-r--r-- | tests/basics/int1.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basics/int1.py b/tests/basics/int1.py index 89d4fd9d4..fd9902f93 100644 --- a/tests/basics/int1.py +++ b/tests/basics/int1.py @@ -78,3 +78,6 @@ test('0b2', 2) test('0o8', 8) test('0xg', 16) test('1 1', 16) + +# check that we don't parse this as a floating point number +print(0x1e+1) |