2010-01-01 05:34:51 -05:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
|
2009-06-02 13:58:47 -04:00
|
|
|
wchar_t x;
|
|
|
|
|
|
|
|
|
|
void f(wchar_t p) {
|
|
|
|
|
wchar_t x;
|
|
|
|
|
unsigned wchar_t y; // expected-warning {{'wchar_t' cannot be signed or unsigned}}
|
|
|
|
|
signed wchar_t z; // expected-warning {{'wchar_t' cannot be signed or unsigned}}
|
|
|
|
|
++x;
|
|
|
|
|
}
|
2009-10-14 14:03:49 -04:00
|
|
|
|
|
|
|
|
// PR4502
|
|
|
|
|
wchar_t const c = L'c';
|
|
|
|
|
int a[c == L'c' ? 1 : -1];
|
2010-01-01 05:34:51 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// PR5917
|
|
|
|
|
template<typename _CharT>
|
|
|
|
|
struct basic_string {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename _CharT>
|
|
|
|
|
basic_string<_CharT> operator+ (const basic_string<_CharT>&, _CharT);
|
|
|
|
|
|
|
|
|
|
int t(void) {
|
|
|
|
|
basic_string<wchar_t>() + L'-';
|
|
|
|
|
return (0);
|
|
|
|
|
}
|