(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
constinit15.C
// PR c++/92058 - constinit malfunction in static data member.
// { dg-do compile { target c++20 } }

struct B {
    B() {}
};

struct A {
    constinit static inline B b1{}; // { dg-error "does not have a constant initializer|call to non-.constexpr. function" "" { target { ! implicit_constexpr } } }
};

int main() {
    A a;
}