1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wno-signed-unsigned-wchar -verify=allow-signed -DSKIP_ERROR_TESTS %s
3 // allow-signed-no-diagnostics
8 unsigned wchar_t y
; // expected-error {{'wchar_t' cannot be signed or unsigned}}
9 signed wchar_t z
; // expected-error {{'wchar_t' cannot be signed or unsigned}}
14 wchar_t const c
= L
'c';
15 int a
[c
== L
'c' ? 1 : -1];
19 template<typename _CharT
>
23 template<typename _CharT
>
24 basic_string
<_CharT
> operator+ (const basic_string
<_CharT
>&, _CharT
);
27 basic_string
<wchar_t>() + L
'-';
32 wchar_t in
[] = L
"\x434" "\x434"; // No warning
34 #ifndef SKIP_ERROR_TESTS
35 // Verify that we do not crash when assigning wchar_t* to another pointer type.
36 void assignment(wchar_t *x
) {
38 y
= x
; // expected-error {{incompatible pointer types assigning to 'char *' from 'wchar_t *'}}