E4006 Names Errors

Names

name '%s' uses reserved prefix (ez_, _ez_, Ez); these are reserved for the compiler

When this occurs

`new UnknownType{}`

Example error message

error[E4006]: undefined type: 'Foo'

How to fix

Define the struct before using `new` with it.

Related errors