mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-12 19:27:40 +08:00
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:
parent
9e5555268a
commit
53be1a8d37
@ -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"
|
||||
|
17
gcc/testsuite/g++.dg/warn/implicit-typename1.C
Normal file
17
gcc/testsuite/g++.dg/warn/implicit-typename1.C
Normal 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" }
|
||||
};
|
Loading…
Reference in New Issue
Block a user