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_assign_expr.py

12 lines
172 B

x:int = 0
y:int = 0
z:bool = False
x = z = 1 # Only one error here (assignment to `x = 1` should succeed)
x = y = None
x = y = []
x = a = None
x = a = []
x = y = True