diff --git a/tests/data/attribute_access_on_number_literals.py b/tests/data/attribute_access_on_number_literals.py index ff565a5b48..7c16bdfb3a 100644 --- a/tests/data/attribute_access_on_number_literals.py +++ b/tests/data/attribute_access_on_number_literals.py @@ -18,6 +18,9 @@ if 10 .real: ... +y = 100[no] +y = 100(no) + # output x = (123456789).bit_count() @@ -39,3 +42,6 @@ if (10).real: ... + +y = 100[no] +y = 100(no)