File: string-init.c

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (51 lines) | stat: -rw-r--r-- 3,306 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// RUN: %clang_cc1 -std=c11 -fsyntax-only -triple x86_64-pc-linux -verify %s

// Note: these match the types specified by the target above.
typedef int wchar_t;
typedef unsigned short char16_t;
typedef unsigned int char32_t;

void f(void) {
  char a1[] = "a"; // No error.
  char a2[] = u8"a"; // No error.
  char a3[] = u"a"; // expected-error{{initializing char array with wide string literal}}
  char a4[] = U"a"; // expected-error{{initializing char array with wide string literal}}
  char a5[] = L"a"; // expected-error{{initializing char array with wide string literal}}

  wchar_t b1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
  wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
  wchar_t b3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  wchar_t b5[] = L"a"; // No error.

  char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
  char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
  char16_t c3[] = u"a"; // No error.
  char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}

  char32_t d1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
  char32_t d2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
  char32_t d3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  char32_t d4[] = U"a"; // No error.
  char32_t d5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}

  int e1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
  int e2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
  int e3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  int e4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
  int e5[] = L"a"; // No error.

  long f1[] = "a"; // expected-error{{array initializer must be an initializer list}}
  long f2[] = u8"a"; // expected-error{{array initializer must be an initializer list}}}
  long f3[] = u"a"; // expected-error{{array initializer must be an initializer list}}
  long f4[] = U"a"; // expected-error{{array initializer must be an initializer list}}
  long f5[] = L"a"; // expected-error{{array initializer must be an initializer list}}
}

void g(void) {
  char a[] = 1; // expected-error{{array initializer must be an initializer list or string literal}}
  wchar_t b[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
  char16_t c[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
  char32_t d[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
}