[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / Parser / cxx-extern-c-array.cpp
blob11092ad0c1ccded9b41e004890b4f43c75944a01
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 extern "C" int myarray[];
5 int myarray[12] = {0};
7 extern "C" int anotherarray[][3];
8 int anotherarray[2][3] = {1,2,3,4,5,6};