blob: 52a736c6402ebc4ba22d3df9e2d2cd52a9d36397 [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
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.
15__wchar_t s[] = L"Hello world!"; // expected-error {{array initializer must be an initializer list}}