mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
201 B
Plaintext
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;
|
|
} |