Navigation
Synopsis Reference to a non-existing module.
Description It is an error to refer to a non-existing module. This can, for example, occur in a qualified name.

Remedies:
  • Check that the offending module name is spelled correctly.
  • Create a module of that name.
Examples Referring to the non-existing module M gives errors:
rascal>M::x = 3;
|stdin:///|(0,4,<1,0>,<1,4>): Undeclared module: M
rascal>M::f(3);
|stdin:///|(0,4,<1,0>,<1,4>): Undeclared module: M
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.