This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]