aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-05-14-array-init.cpp
blob: 56a7f2825751e05c6d05cf41f51ed4e1826c3359 (plain)
1
2
3
4
5
6
7
8
9
10
#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 };