Skip to content

NAM003

NAM003 — wildcard import is forbidden

SubsystemNames
Severityerror

Glob imports like import foo.* are not allowed — they make the imported surface implicit. List names explicitly (import foo.{a, b}) or import the namespace and qualify uses.

From your terminal:

Terminal window
q64 explain NAM003