Files
c3c/test/test_suite/enumerations/const_enum_self_ref.c3
Christoffer Lerno acc4a900f5 - New const enum declaration syntax.
- New enum associated value syntax.
2026-02-12 14:43:56 +01:00

11 lines
201 B
Plaintext

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