E2032 Parse Errors

const-array-requires-size

const array must have fixed size

When this occurs

Declaring const array without explicit size

Example error message

error[E2032]: const array must have a fixed size

How to fix

Constant arrays must have a fixed size: `const arr [3]int = {1, 2, 3}`.

Related errors