remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / c1x-static-assert-4.c
1 /* Test C1X static assertions.  More invalid assertions.  */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c1x -pedantic-errors" } */
4
5 /* Static assertions not valid in old-style parameter declarations
6    because declarations there must have declarators.  */
7
8 void
9 f (i)
10      int i;
11      _Static_assert (1, ""); /* { dg-error "expected" } */
12 {
13 }