Test case distilled from `bash'.
[oota-llvm.git] / test / C++Frontend / 2003-05-22-VarSizeArray.c
1 #include <stdio.h>
2
3 int test(int Num) {
4   int Arr[Num];
5   Arr[2] = 0;
6   return Arr[2];
7 }
8
9 int main() {
10   printf("%d\n", test(4));
11   return 0;
12 }