No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / struct-parse-1.c
blob32c115797fdb1318733168451d27dd863b1567e4
1 /* Copyright (C) 2006 Free Software Foundation, Inc. */
2 /* Contributed by Carlos O'Donell on 2006-03-31 */
4 /* This code caused the C frontend to loop
5 forever exhausting all system memory, or ICE */
6 /* Origin: Carlos O'Donell <carlos@codesourcery.com> */
8 /* { dg-options "-std=c99" } */
9 struct s { int a; int b; struct t c; }; /* { dg-error "error: field 'c' has incomplete type" } */
10 struct s d = { .b = 0 };