File: p1.cpp

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (55 lines) | stat: -rw-r--r-- 2,362 bytes parent folder | download | duplicates (25)
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
52
53
54
55
// RUN: %clang_cc1 -std=c++2a -verify %s

constinit int a;
constinit thread_local int b;
constinit static int c;

void f() {
  constinit static int a;
  constinit thread_local int b;
  constinit int c; // expected-error {{local variable cannot be declared 'constinit'}}
}

namespace missing {
  int a; // expected-note {{add the 'constinit' specifier}}
  extern constinit int a; // expected-error {{added after initialization}}

  // We allow inheriting 'constinit' from a forward declaration as an extension.
  extern constinit int b; // expected-note {{here}}
  int b; // expected-warning {{'constinit' specifier missing}}
}

struct S {
  static constinit int a; // expected-note {{here}}
  static constinit constexpr int b; // expected-error {{cannot combine with previous}} expected-note {{here}}
  static constinit const int c = 1;
  static constinit const int d = 1;
};
int S::a; // expected-warning {{'constinit' specifier missing}}
int S::b; // expected-warning {{'constinit' specifier missing}}
const int S::c;
inline const int S::d;

struct T {
  static int a;
  static constexpr int b = 1; // expected-note {{add the 'constinit' specifier}}
  static const int c = 1; // expected-note {{add the 'constinit' specifier}}
  static const int d = 1; // expected-note {{add the 'constinit' specifier}}
};
constinit int T::a;
constinit const int T::b; // expected-error {{'constinit' specifier added after initialization}}
constinit const int T::c; // expected-error {{'constinit' specifier added after initialization}}
constinit inline const int T::d; // expected-error {{'constinit' specifier added after initialization}}

constinit void g() {} // expected-error {{constinit can only be used in variable declarations}}

// (These used to trigger crashes.)
void h();
constinit void h(); // expected-error {{constinit can only be used in variable declarations}}
constexpr void i(); // expected-note {{here}}
constinit void i(); // expected-error {{non-constexpr declaration of 'i' follows constexpr declaration}}
// expected-error@-1 {{constinit can only be used in variable declarations}} 

typedef constinit int type; // expected-error {{typedef cannot be constinit}}
using type = constinit int; // expected-error {{type name does not allow constinit specifier}}
auto q() -> int constinit; // expected-error {{type name does not allow constinit specifier}}