mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
18 lines
186 B
Plaintext
18 lines
186 B
Plaintext
// #skip
|
|
|
|
type State enum u8 {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
State += 10; // @error{expected identifier after incremental enum}
|
|
|
|
|
|
type State enum u8 {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
State += C;
|
|
State += D;
|