PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-static-assert-4.c
blobddab440ff48c9fb8a154b13c76e1d1ba271bfe6f
1 /* Test C11 static assertions. More invalid assertions. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 /* Static assertions not valid in old-style parameter declarations
6 because declarations there must have declarators. */
8 void
9 f (i)
10 int i;
11 _Static_assert (1, ""); /* { dg-error "expected" } */