mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
19 lines
148 B
Plaintext
19 lines
148 B
Plaintext
module foo;
|
|
import bar;
|
|
|
|
struct Foo
|
|
{
|
|
MyEnum value;
|
|
}
|
|
|
|
module bar;
|
|
|
|
constdef MyEnum : CInt
|
|
{
|
|
VAL1 = 1,
|
|
VAL2 = 2,
|
|
VAL3 = 3,
|
|
}
|
|
|
|
fn void main() {}
|