blob: ead3d974d34fcb8804682f3db3da07a2d75b90cf [file] [log] [blame]
Hans Wennborg15f92ba2013-05-10 10:08:40 +00001// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s
2
3// C++ mode with -fno-wchar works the same as C mode for wchar_t.
4// RUN: %clang_cc1 -x c++ -fno-wchar -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s
5
6wchar_t f(); // expected-error{{unknown type name 'wchar_t'}}
7
8// __wchar_t is available as an MS extension.
9__wchar_t g = L'a'; // expected-note {{previous}}
10
11// __wchar_t is a distinct type, separate from the target's integer type for wide chars.
12unsigned short g; // expected-error {{redefinition of 'g' with a different type: 'unsigned short' vs '__wchar_t'}}
13
14// The type of a wide string literal is actually not __wchar_t.
Stephen Hines651f13c2014-04-23 16:59:28 -070015__wchar_t s[] = L"Hello world!"; // expected-error-re {{array initializer must be an initializer list{{$}}}}
Hans Wennborg0ff50742013-05-15 11:03:04 +000016
17// Do not suggest initializing with a string here, because it would not work.
Stephen Hines651f13c2014-04-23 16:59:28 -070018__wchar_t t[] = 1; // expected-error-re {{array initializer must be an initializer list{{$}}}}