mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
6 lines
236 B
Plaintext
6 lines
236 B
Plaintext
module foo;
|
|
|
|
alias FOO = module abc; // #error: A (lower case) module name was expected here
|
|
alias hellO = module abc; // #error: The module name must be all lower case
|
|
alias hllo = module aBC; // #error: A module name may not have any
|