3 // No match. This used to result in an internal error when it happened in the initialization of a file-scope object.
4 int i
= _Generic(7, char : 7); /* ERROR */
8 // No match. This used to result in an internal error (similar to the issue above, but mcs51-specific).
9 char const* a
= _Generic("bla", int: "blu"); /* ERROR */
16 int i
= _Generic(7, char : 7); /* ERROR */