https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99263

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Reduced (and corrected) testcase:

#include <typeinfo>
struct A{
    ~A(){}
};
int main(){
    auto t = typeid(A::~A).name();
}

Reply via email to