File: p1.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (55 lines) | stat: -rw-r--r-- 2,362 bytes parent folder | download | duplicates (23)
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}}