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

11 lines
194 B
Plaintext

constdef MyEnum
{
VAL1 = VAL3, // #error: Unable to properly resolve constdef value, this can sometimes happen in recursive definitions
VAL2 ,
VAL3
}
fn int main()
{
return 0;
}