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