Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / constexpr-virtual21.C
blob8b70c5f538b5a787cf77885e2abed96aa50b382c
1 // PR c++/93413
2 // { dg-do compile { target c++20 } }
4 struct Base {
5   virtual ~Base() = default;
6 };
7 constexpr Base b;
9 struct Derived : Base { };
10 constexpr Derived d;