E2010 Parse Errors

using-before-import

cannot use module before importing

When this occurs

`using math` before `import math`

Example error message

error[E2010]: cannot use module 'math' before importing it

How to fix

Import a module with `import @module` before using it with `use @module`.

Related errors