Home | History | Annotate | Download | only in Sema

Lines Matching full:wide

11   char a3[] = u"a"; // expected-error{{initializing char array with wide string literal}}
12 char a4[] = U"a"; // expected-error{{initializing char array with wide string literal}}
13 char a5[] = L"a"; // expected-error{{initializing char array with wide string literal}}
15 wchar_t b1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
16 wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
17 wchar_t b3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
18 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
21 char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
22 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
24 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
25 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
27 char32_t d1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
28 char32_t d2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
29 char32_t d3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
31 char32_t d5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
33 int e1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
34 int e2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
35 int e3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
36 int e4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
48 wchar_t b[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
49 char16_t c[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
50 char32_t d[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}