aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/970217-1.c
blob: 09e716a330bca5f1b07ac48075ac172d000069d7 (plain)
1
2
3
4
5
6
7
8
9
10
sub (int i, int array[i++])
{
  return i;
}

main()
{
  int array[10];
  exit (sub (10, array) != 11);
}