https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83287
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org, | |nathan at gcc dot gnu.org --- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Started with r248250. Slightly cleaned up testcase: void foo (); namespace { void foo (); } template <class, class> void bar () { void *p = (void *) foo; } void baz () { bar<double, double> (); }