summaryrefslogtreecommitdiffstats
path: root/test/Sema/wchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/wchar.c')
-rw-r--r--test/Sema/wchar.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Sema/wchar.c b/test/Sema/wchar.c
new file mode 100644
index 0000000..1637600
--- /dev/null
+++ b/test/Sema/wchar.c
@@ -0,0 +1,12 @@
+// RUN: clang-cc %s -fsyntax-only -verify
+#include <wchar.h>
+
+int check_wchar_size[sizeof(*L"") == sizeof(wchar_t) ? 1 : -1];
+
+void foo() {
+ int t1[] = L"x";
+ wchar_t tab[] = L"x";
+
+ int t2[] = "x"; // expected-error {{initialization}}
+ char t3[] = L"x"; // expected-error {{initialization}}
+}
OpenPOWER on IntegriCloud