https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115501
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |error-recovery, | |ice-on-invalid-code --- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: ``` struct s{virtual void f();}; struct s1 : s{}; namespace __cxxabiv1 { extern "C" void __dynamic_cast(); } void diagnostic_information_impl(s const *se) { dynamic_cast<s1 const *>(se); } ```