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++/54844] ice tsubst_copy, at cp/pt.c:12352


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54844

Markus Trippelsdorf <markus at trippelsdorf dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |markus at trippelsdorf dot
                   |                            |de

--- Comment #1 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-10-07 11:32:20 UTC ---
template<class>class A {};

class B : public A<double>{};

template<class T, class R>
void
vector_norm(A<T>, R)
{
  sizeof(float) ? : 0;
}
void
xnorm(B& p1)
{
  vector_norm(p1, 0);
}


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