2011-05-01 03:24:24 +08:00
|
|
|
// RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -pedantic -verify %s
|
2017-10-07 07:09:55 +08:00
|
|
|
// RUN: %clang_cc1 -fwchar-type=short -fno-signed-wchar -fsyntax-only -pedantic -verify %s
|
2011-05-01 03:24:24 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -pedantic -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2011-05-01 03:24:24 +08:00
|
|
|
|
|
|
|
// Check that short wchar_t is unsigned, and that regular wchar_t is not.
|
|
|
|
int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1];
|