Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / c-c++-common / Wunused-var-6.c
blob1217719a29881b0646ac6bd8d41dac3011757367
1 /* PR c/43981 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wunused" } */
5 void g (char *);
7 char
8 f (int a)
10 int len = a * 3;
11 char t[len];
13 g (t);
14 return t[0];