E3016 Types Errors

Types

cannot dereference non-pointer type '%s'; only ^T types can use ^

When this occurs

Indexing non-array/string

Example error message

error[E3016]: index operator not supported for STRUCT

How to fix

Only arrays, strings, and maps can be indexed with `[]`.

Related errors