annotate gcc/testsuite/gcc.dg/struct-parse-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Copyright (C) 2006 Free Software Foundation, Inc. */
kono
parents:
diff changeset
2 /* Contributed by Carlos O'Donell on 2006-03-31 */
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 /* This code caused the C frontend to loop
kono
parents:
diff changeset
5 forever exhausting all system memory, or ICE */
kono
parents:
diff changeset
6 /* Origin: Carlos O'Donell <carlos@codesourcery.com> */
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 /* { dg-options "-std=c99" } */
kono
parents:
diff changeset
9 struct s { int a; int b; struct t c; }; /* { dg-error "field 'c' has incomplete type" } */
kono
parents:
diff changeset
10 struct s d = { .b = 0 };
kono
parents:
diff changeset
11