OSDN Git Service

* g++.dg/template/qualttp20.C: Remove unnecessary error tags.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 16 Mar 2002 01:00:50 +0000 (01:00 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 16 Mar 2002 01:00:50 +0000 (01:00 +0000)
* g++.dg/template/qualttp3.C: Likewise.
* g++.dg/template/qualttp4.C: Likewise
* g++.dg/template/qualttp5.C: Likewise
* g++.dg/template/qualttp6.C: Likewise
* g++.dg/template/qualttp7.C: Likewise
* g++.dg/template/qualttp8.C: Likewise
* g++.dg/template/recurse.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50863 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/qualttp20.C
gcc/testsuite/g++.dg/template/qualttp3.C
gcc/testsuite/g++.dg/template/qualttp4.C
gcc/testsuite/g++.dg/template/qualttp5.C
gcc/testsuite/g++.dg/template/qualttp6.C
gcc/testsuite/g++.dg/template/qualttp7.C
gcc/testsuite/g++.dg/template/qualttp8.C
gcc/testsuite/g++.dg/template/recurse.C

index 531289f..60d858e 100644 (file)
@@ -1,5 +1,16 @@
 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
 
+       * g++.dg/template/qualttp20.C: Remove unnecessary error tags.
+       * g++.dg/template/qualttp3.C: Likewise.
+       * g++.dg/template/qualttp4.C: Likewise
+       * g++.dg/template/qualttp5.C: Likewise
+       * g++.dg/template/qualttp6.C: Likewise
+       * g++.dg/template/qualttp7.C: Likewise
+       * g++.dg/template/qualttp8.C: Likewise
+       * g++.dg/template/recurse.C: Likewise.
+
+2002-03-15  Mark Mitchell  <mark@codesourcery.com>
+
        * g++.dg/opt/dtor1.C: New test.
 
 2002-03-15  Jakub Jelinek  <jakub@redhat.com>
index 2c6c714..f0afbe4 100644 (file)
@@ -1,6 +1,6 @@
 // { dg-do compile }
 
-// Copyright (C) 2001 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 // Contributed by Nathan Sidwell 15 Dec 2001 <nathan@codesourcery.com>
 
 // PR 2645
@@ -29,5 +29,5 @@ template <typename T> struct B2 : T
   myconst b;
 };
 
-B1<AS> b1;     // { dg-error "instantiated" "" }
+B1<AS> b1;
 B2<AS> b2;
index 929fa62..ed65bad 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -19,5 +19,5 @@ template <class T> struct C
 
 int main()
 {
-       C<A> c; // { dg-error "instantiated" }
+       C<A> c;
 }
index 04335f1..489460a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -20,5 +20,5 @@ template <class T> struct C
 
 int main()
 {
-       C<A> c; // { dg-error "instantiated" }
+       C<A> c;
 }
index 7ac7a31..b53ec22 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -15,11 +15,11 @@ template <template <class> class TT> void f()
 
 template <class T> struct C
 {
-       void g() { f<A<T>::template B>(); } // { dg-error "instantiated" }
+       void g() { f<A<T>::template B>(); }
 };
 
 int main()
 {
        C<int> c;
-       c.g(); // { dg-error "instantiated" }
+       c.g();
 }
index 0468958..1796f12 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -12,4 +12,4 @@ template <class T> struct D {
 struct E {
 };
 
-D<E> d; // { dg-error "instantiated" }
+D<E> d;
index f6573ac..5f15e03 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -9,4 +9,4 @@ template <class T> struct D {
        C<T::template B> c; // { dg-error "no class template" }
 };
 
-D<int> d; // { dg-error "instantiated" }
+D<int> d;
index da67a09..e9389df 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2002 Free Software Foundation
 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
 // { dg-do compile }
 
@@ -14,4 +14,4 @@ struct E {
        template <class T> class B {}; // { dg-error "private" }
 };
 
-D<E> d; // { dg-error "instantiated" }
+D<E> d;
index 61b9409..af6dbfa 100644 (file)
@@ -18,5 +18,5 @@ template <> struct F<52>
 int main ()
 {
   F<1> f;
-  return f();          // { dg-error "instantiate" "excessive recursion" }
+  return f();
 }