[Bug c++/83287] [8 Regression] ice in tsubst_copy, at cp/pt.c:14884

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Dec 5 11:43:00 GMT 2017


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> ();
}


More information about the Gcc-bugs mailing list