re PR c++/7982 (core dump due to recursive definition (using stl set))

PR c++/7982
	* g++.dg/warn/implicit-typename1.C: New test.

From-SVN: r63318
This commit is contained in:
Kriang Lerdsuwanakij 2003-02-23 14:10:50 +00:00 committed by Kriang Lerdsuwanakij
parent 9e5555268a
commit 53be1a8d37
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-02-23 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/7982
* g++.dg/warn/implicit-typename1.C: New test.
2003-02-22 Kelley Cook <kelleycook@comcast.net>
* g++.old-deja/g++.other/store-expr1.C: Replace "mcpu"

View File

@ -0,0 +1,17 @@
// The -pedantic option must be omitted to trigger the crash.
// { dg-do compile }
// { dg-options "" }
// PR c++/7982: Crash warning about implicit typename.
// The base class refers to another typename, while the
// name lookup finds a template.
template <typename T> struct X {};
template <typename T> struct C {
typedef typename T::X X;
};
template <typename T> struct A : public C<T> {
typedef X<int> X; // { dg-warning "lookup|dependent base|typename" }
};