comparison gcc/testsuite/gcc.dg/pr93577-6.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
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) { [0] = 0 }; /* { dg-error "unknown type name" } */
11 }