1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 char x1[]("hello");
4 extern char x1[6];
5 
6 char x2[] = "hello";
7 extern char x2[6];
8