Consider: ```dart final [a, b] = [1,2]; print(b); ``` `a` is unused but not reported as such. It should be reported as unused, and the fix should be: ```dart final [_, b] = [1,2]; print(b); ```