1 /* Copyright (C) 2006 Free Software Foundation, Inc. */ 2 /* Contributed by Carlos O'Donell on 2006-03-31 */ 3 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> */ 7 8 /* { dg-options "-std=c99" } */ 9 struct s { int a; int b; struct t c; }; /* { dg-error "field 'c' has incomplete type" } */ 10 struct s d = { .b = 0 }; 11 12