]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr93577-5.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr93577-5.c
1 /* Test ICE with designated initializer in compound literal with bad
2 type name (ICE seen with early version of fix for bug 93577 but not
3 covered in other tests). */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6
7 void *
8 f (void)
9 {
10 return &(const bad_type) { .a = 0 }; /* { dg-error "unknown type name" } */
11 }