E2017 Parse Errors

trailing-comma-array

trailing comma in array literal

When this occurs

`{1, 2, 3,}`

Example error message

error[E2017]: unexpected trailing comma in array literal

How to fix

Remove the trailing comma from your array literal: `{1, 2, 3}` not `{1, 2, 3,}`.

Related errors