Commit 1303d034 by Giovanni Bajo

re PR c++/13407 (Confusing error message from extraneous typename)

	PR c++/13407
	* g++.dg/parse/typename6.C: New test.

From-SVN: r75970
parent 1ed53ef3
2004-01-15 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/13407
* g++.dg/parse/typename6.C: New test.
2004-01-15 Geoffrey Keating <geoffk@apple.com>
PR pch/13361
......
// { dg-do compile }
// Contributed by Matt Austern <austern at apple dot com>
// PR c++/13407: Gracefully handle keyword typename in base class specifier.
struct A { };
struct B { typedef A Type; };
template <typename T>
struct X :
public typename T::Type // { dg-error "not allowed in this context" }
{ };
X<B> x;
struct C :
public typename A // { dg-error "not allowed outside of templates" }
{ };
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