// RUN: %clang_cc1 -std=c++2a -verify %s
constinit int a;
constinit thread_local int b;
constinit static int c;
void
;
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;
;
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 // expected-error {{constinit can only be used in variable declarations}}
// (These used to trigger crashes.)
void ;
constinit void ; // expected-error {{constinit can only be used in variable declarations}}
constexpr void ; // expected-note {{here}}
constinit void ; // 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 int constinit; // expected-error {{type name does not allow constinit specifier}}