blob: 16376009ab13a26e9020668d116c4d7639f07b31 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -fsyntax-only -verify
Chris Lattner19753cf2009-02-26 23:36:02 +00002#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}