Commit bbcd2439 by Giovanni Bajo

re PR c++/13810 (ICE on invalid default templates)

	PR c++/13810
	* g++.dg/template/ttp7.C: New test.

From-SVN: r76594
parent a3a503a5
2004-01-25 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/13810
* g++.dg/template/ttp7.C: New test.
2004-01-25 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/13797
......
// { dg-do compile }
// Contributed by Andrew Pinski <pinskia at gcc dot gnu dot org>
// PR c++/13810: ICE while parsing invalid default argument for a
// template template parameter.
struct X;
template<int> struct A {};
template<template<int> class = X > struct B1 {}; // { dg-error "as a default value" }
template<template<int> class = A<0> > struct B2 {}; // { dg-error "as a default value" }
template <typename T>
struct S {
template <template <typename> class = S> struct I1 {}; // { dg-error "as a default value" }
template <template <typename> class = ::S> struct I2 {};
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment