diff options
Diffstat (limited to 'test/C++Frontend/2003-05-14-array-init.cpp')
-rw-r--r-- | test/C++Frontend/2003-05-14-array-init.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/C++Frontend/2003-05-14-array-init.cpp b/test/C++Frontend/2003-05-14-array-init.cpp deleted file mode 100644 index 56a7f28257..0000000000 --- a/test/C++Frontend/2003-05-14-array-init.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include <stdio.h> - -extern int table[]; - -int main() { - printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]); - return table[1]; -} - -int table[] = { 1, 0, 3, 4 }; |