Home | History | Annotate | Download | only in Parser
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 extern "C" int myarray[];
      4 int myarray[12] = {0};
      5 
      6 extern "C" int anotherarray[][3];
      7 int anotherarray[2][3] = {1,2,3,4,5,6};
      8