summaryrefslogtreecommitdiff
path: root/clang/test/SemaCXX/short-wchar-sign.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaCXX/short-wchar-sign.cpp')
-rw-r--r--clang/test/SemaCXX/short-wchar-sign.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/short-wchar-sign.cpp b/clang/test/SemaCXX/short-wchar-sign.cpp
new file mode 100644
index 0000000..9a177c0
--- /dev/null
+++ b/clang/test/SemaCXX/short-wchar-sign.cpp
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -pedantic -verify %s
+// RUN: %clang_cc1 -fshort-wchar -fsyntax-only -pedantic -verify %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -pedantic -verify %s
+
+// 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];