blob: b7171fec7a551451c53693eea4b16e2f7c70c727 [file] [log] [blame]
Chris Lattner19753cf2009-02-26 23:36:02 +00001// RUN: clang %s -fsyntax-only -verify
2#include <wchar.h>
Eli Friedman8ef1f262008-05-27 07:57:14 +00003
Chris Lattner19753cf2009-02-26 23:36:02 +00004int check_wchar_size[sizeof(*L"") == sizeof(wchar_t) ? 1 : -1];
5
6void foo() {
7 int t1[] = L"x";
8 wchar_t tab[] = L"x";
9
10 int t2[] = "x"; // expected-error {{initialization}}
11 char t3[] = L"x"; // expected-error {{initialization}}
12}