------- Comment #16 from reichelt at gcc dot gnu dot org 2009-06-30 02:15 ------- Even shorter testcase:
==================================== struct A { bool b; int i; bool foo(const A& a) const; }; bool A::foo(const A& a) const { if (b) return a.foo(*this); return i < a.i; } ==================================== -- reichelt at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |reichelt at gcc dot gnu dot | |org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40321