libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / c23-generic-1.c
blob26c97fb4a9ee3343e22f961bdfd483d6ded669f4
1 /* Test C2Y _Generic features: error with -std=c23 -pedantic-errors. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c23 -pedantic-errors" } */
5 _Static_assert (_Generic (const int, int : 1, const int : 2) == 2); /* { dg-error "use of type name" } */
7 _Static_assert (_Generic (void, int : 1, void : 2) == 2); /* { dg-error "use of type name" } */
8 /* { dg-error "incomplete type" "incomplete type" { target *-*-* } .-1 } */
10 _Static_assert (_Generic (int (), int (*) () : 1, int () : 2) == 2); /* { dg-error "use of type name" } */
11 /* { dg-error "function type" "function type" { target *-*-* } .-1 } */
13 const int ci;
15 _Static_assert (_Generic (typeof (ci), const int : 1, int : 2) == 1); /* { dg-error "use of type name" } */
17 _Static_assert (_Generic (ci, const int : 1, int : 2) == 2);