]> gcc.gnu.org Git - gcc.git/commitdiff
Move the ERROR lines to where the errors actually are.
authorRobert Lipe <robertl@gcc.gnu.org>
Fri, 29 May 1998 07:48:37 +0000 (07:48 +0000)
committerRobert Lipe <robertl@gcc.gnu.org>
Fri, 29 May 1998 07:48:37 +0000 (07:48 +0000)
From-SVN: r20137

gcc/testsuite/g++.old-deja/g++.robertl/eb118.C

index 01fb4a3d078a5aa3b2502d9683354bbdf4e1f168..de0b3fe139583e56196ff4dda052a30dba4c3e9c 100644 (file)
@@ -13,12 +13,12 @@ A<T>::test(){
   cerr << "test for " << typeid(*this).name() << endl;
 }
 // Specialization declaration
-void
-A<double>::test();
+void                           
+A<double>::test();             // ERROR - not a specialization
 
 // Specialization definition
 void
-A<double>::test(){  // ============= LINE 21 ==================
+A<double>::test(){             // ERROR - not a specialization
   cerr << "specialization for " << typeid(*this).name() << endl;
 }
 
This page took 0.076116 seconds and 5 git commands to generate.