summaryrefslogtreecommitdiffstats
path: root/test/Sema/wchar.c
blob: 16376009ab13a26e9020668d116c4d7639f07b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
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