OSDN Git Service

* c-common.c (c_common_reswords): Add _Static_assert for C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20031222-1.c
1 /* PR c/9163 */
2 /* The following test used to ICE after an error message in C99 mode
3    because GCC was trying to expand the tree to rtl.  */
4
5 /* { dg-do compile } */
6 /* { dg-options "-std=c99" } */
7
8
9
10 void f ()
11 {
12         for (; int ; ); /* { dg-error "" } */
13 }
14
15 void foo ()
16 {
17         while (int i); /* { dg-error "" } */
18 }