[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / SemaCXX / ms-wchar.cpp
blob878d8cadcebe6cf9214b20f5041300e1edf2f3d5
1 // RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s
3 wchar_t f();
4 __wchar_t f(); // No error, wchar_t and __wchar_t are the same type.
6 __wchar_t g = L'a';
7 __wchar_t s[] = L"Hello world!";
9 unsigned short t[] = L"Hello world!"; // expected-error{{array initializer must be an initializer list}}
11 wchar_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}}