Files
c3c/test/test_suite/enumerations/enum_with_associated_value_decl.c3

7 lines
130 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
}