https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102284
--- Comment #2 from Johel Ernesto Guerrero Peña <johelegp at gmail dot com> --- Fixed that: https://godbolt.org/z/YGf4GTP5P. ```C++ struct X { constexpr ~X() { } }; int main() { []() consteval { X x{}; x.~X(); }(); } ```