https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92695
--- Comment #12 from Toni Neubert <lutztonineubert at gmail dot com> --- Hello, I got another error using virtual classes: ``` struct A { virtual constexpr ~A() = default; }; struct B : A {}; constexpr bool test() { B b; return true; } static_assert(test()); ``` -> virtual constexpr B::~B()' used before its definition