https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65856
Marek Polacek <mpolacek at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mpolacek at gcc dot gnu.org --- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> --- I think the following may be used as a test case. struct A { virtual void f (); }; struct B : A { virtual void f () final; };