1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc wchar_t f(); 4*f4a2713aSLionel Sambuc __wchar_t f(); // No error, wchar_t and __wchar_t are the same type. 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc __wchar_t g = L'a'; 7*f4a2713aSLionel Sambuc __wchar_t s[] = L"Hello world!"; 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc unsigned short t[] = L"Hello world!"; // expected-error{{array initializer must be an initializer list}} 10*f4a2713aSLionel Sambuc 11*f4a2713aSLionel Sambuc wchar_t u[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}} 12*f4a2713aSLionel Sambuc __wchar_t v[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}} 13