summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx-extern-c-array.cpp
blob: 1a04fa05c24e6fcc6fc167398ef13fdb39ad1e54 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -fsyntax-only -verify %s

extern "C" int myarray[];
int myarray[12] = {0};

extern "C" int anotherarray[][3];
int anotherarray[2][3] = {1,2,3,4,5,6};
OpenPOWER on IntegriCloud