Open
Description
For example, the following code fails to parse:
enum [[nodiscard]] error_t {
A,
};
int main() {
}
The error output is:
test.c:2:1: error: syntax error before '['
enum [[nodiscard]] error_t {
PARSING ERROR
This also fails in the exact same way for structs or unions with an attribute sequence.