* g++.dg/warn/implicit-typename1.C: Remove warning.

From-SVN: r63605
This commit is contained in:
Kriang Lerdsuwanakij 2003-03-01 07:02:39 +00:00 committed by Kriang Lerdsuwanakij
parent 27f9431492
commit 74dd1333c1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-03-01 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* g++.dg/warn/implicit-typename1.C: Remove warning.
2003-02-28 Richard Henderson <rth@redhat.com>
* gcc.dg/noreturn-1.c: Move noreturn warning line.

View File

@ -13,5 +13,5 @@ template <typename T> struct C {
};
template <typename T> struct A : public C<T> {
typedef X<int> X; // { dg-warning "lookup|dependent base|typename" }
typedef X<int> X;
};