*foo, *bar = [1, 2, 3]
*foo, bar = [1, 2, 3]
More than one starred expression in assignment. Emitted when there are more than one starred expressions (*x) in an assignment. This is a SyntaxError.
*x
SyntaxError