1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3char x1[]("hello");
4extern char x1[6];
5
6char x2[] = "hello";
7extern char x2[6];
8
9char x3[] = { "hello" };
10extern char x3[6];
11
12wchar_t x4[](L"hello");
13extern wchar_t x4[6];
14
15wchar_t x5[] = L"hello";
16extern wchar_t x5[6];
17
18wchar_t x6[] = { L"hello" };
19extern wchar_t x6[6];
20