summaryrefslogtreecommitdiff
path: root/pylint/test/functional/star_needs_assignment_target.py
blob: 5421c226b7b8e7386b4b31a4a8d161c92468ad63 (plain)
1
2
3
4
"""Test for a = *b"""

FIRST = *[1, 2]  # [star-needs-assignment-target]
*THIRD, FOURTH = [1, 2, 3,]