Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / Parser / cxx-extern-c-array.cpp
blob14912fd1067b7c6bb2f96b3137922e3d835b9911
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 extern "C" int myarray[];
4 int myarray[12] = {0};
6 extern "C" int anotherarray[][3];
7 int anotherarray[2][3] = {1,2,3,4,5,6};