You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ChocoPy/pa2-tests/core/bad_list_index.py

8 lines
101 B

x:[int] = None
x = [1, 2, 3]
x[True] # Bad
False[0] # Bad
[][0] # Bad
x[True] = x[False] = 1