PR tree-optimization/86401
[official-gcc.git] / gcc / testsuite / c-c++-common / Wunused-var-14.c
blob389febae8c695592f7c9783b118eaee9e49e5af3
1 /* PR c/50179 */
2 /* { dg-options "-Wunused" } */
3 /* { dg-do compile } */
5 void bar (int, ...);
7 char *
8 foo (void)
10 bar (1, (__extension__ ({ static char b[2]; b[0] = 1; b; })));
11 bar (1, ({ static char c[2]; c[0] = 1; c; }));
12 return ({ static char d[2]; d[0] = 1; d; });