Files
c3c/test/test_suite/enumerations/enum_const_resolution_order.c3t
Christoffer Lerno 5a82f672b5 Update to constdef
2026-02-20 01:13:20 +01:00

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() {}