aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-05-22-VarSizeArray.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/C++Frontend/2003-05-22-VarSizeArray.c')
-rw-r--r--test/C++Frontend/2003-05-22-VarSizeArray.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/C++Frontend/2003-05-22-VarSizeArray.c b/test/C++Frontend/2003-05-22-VarSizeArray.c
deleted file mode 100644
index 7ab4d67a99..0000000000
--- a/test/C++Frontend/2003-05-22-VarSizeArray.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int test(int Num) {
- int Arr[Num];
- Arr[2] = 0;
- return Arr[2];
-}
-
-int main() {
- printf("%d\n", test(4));
- return 0;
-}