xref: /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/short-wchar-sign.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -pedantic -verify %s
2 // RUN: %clang_cc1 -fshort-wchar -fsyntax-only -pedantic -verify %s
3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -pedantic -verify %s
4 // expected-no-diagnostics
5 
6 // Check that short wchar_t is unsigned, and that regular wchar_t is not.
7 int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1];
8