https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94190
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Adjusted testcase: struct S { operator long & (); } b; template <int N> void foo () { b--; } void bar () { foo <0> (); }