From: Robert Lipe Date: Fri, 29 May 1998 07:48:37 +0000 (+0000) Subject: Move the ERROR lines to where the errors actually are. X-Git-Tag: prereleases/egcs-1.1-prerelease~1019 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=35c68eb5a6c2b809129a98dff357a58f4e6b527a;p=gcc.git Move the ERROR lines to where the errors actually are. From-SVN: r20137 --- diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C index 01fb4a3d078a..de0b3fe13958 100644 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C @@ -13,12 +13,12 @@ A::test(){ cerr << "test for " << typeid(*this).name() << endl; } // Specialization declaration -void -A::test(); +void +A::test(); // ERROR - not a specialization // Specialization definition void -A::test(){ // ============= LINE 21 ================== +A::test(){ // ERROR - not a specialization cerr << "specialization for " << typeid(*this).name() << endl; }