blob: 878d8cadcebe6cf9214b20f5041300e1edf2f3d5 [file] [log] [blame]
Hans Wennborg0d81e012013-05-10 10:08:40 +00001// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s
2
3wchar_t f();
4__wchar_t f(); // No error, wchar_t and __wchar_t are the same type.
5
6__wchar_t g = L'a';
7__wchar_t s[] = L"Hello world!";
8
9unsigned short t[] = L"Hello world!"; // expected-error{{array initializer must be an initializer list}}
Hans Wennborg8f62c5c2013-05-15 11:03:04 +000010
11wchar_t u[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
12__wchar_t v[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}