* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: Don't
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 970217-1.c
blob09e716a330bca5f1b07ac48075ac172d000069d7
1 sub (int i, int array[i++])
3 return i;
6 main()
8 int array[10];
9 exit (sub (10, array) != 11);