9 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4extern "C" int myarray[];5int myarray[12] = {0};6 7extern "C" int anotherarray[][3];8int anotherarray[2][3] = {1,2,3,4,5,6};9 1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4extern "C" int myarray[];5int myarray[12] = {0};6 7extern "C" int anotherarray[][3];8int anotherarray[2][3] = {1,2,3,4,5,6};9