1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-29 23:12:55 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-05-14-array-init.cpp
Chris Lattner e8b15df0fa New testcase that breaks CFE
llvm-svn: 6217
2003-05-14 21:08:04 +00:00

11 lines
173 B
C++

#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 };