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

7 lines
126 B
Plaintext

enum Test2 : (usz a, usz b) {
FOO {4, 5, },
}
enum Test : (usz a, usz b) {
FOO {a: 1, b: 1}, // #error: This looks like
}