comparison gcc/testsuite/gcc.dg/pr93577-4.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 variable-size struct initializer: bug 93577. */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4
5 void
6 f (int c)
7 {
8 struct s
9 {
10 int a;
11 int x[c];
12 struct
13 {
14 int a, b;
15 } nest;
16 } v[2] = { [1].nest.b = 1 }; /* { dg-error "variable-sized object may not be initialized" } */
17 }