blob: 29e8b51326d4b07424c1176e13b6689610c93a48 [file] [log] [blame]
// 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" }
};
int main() {
A a;
}