![]() |
|
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:
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 ![]() |