aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr47766.c
blob: 50e2feebadb54ea903b957d3c5c90ac579d570de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2 -fstack-protector" } */
/* { dg-require-effective-target fstack_protector } */

int
parse_opt (int key)
{
   struct
   {
     int arg[key];
   } reqdata;
  return 0;
}