rt_gccstream/gcc/testsuite/c-c++-common/Wunused-var-6.c

16 lines
170 B
C

/* PR c/43981 */
/* { dg-do compile } */
/* { dg-options "-Wunused" } */
void g (char *);
char
f (int a)
{
int len = a * 3;
char t[len];
g (t);
return t[0];
}