diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-29 07:48:37 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-29 07:48:37 +0000 |
commit | 35c68eb5a6c2b809129a98dff357a58f4e6b527a (patch) | |
tree | 1412810e3b2430d0e97dff45cd95251d33722d3d /gcc | |
parent | 711734a9c6e5f649d0557b9710ca97b4a1c55d9d (diff) | |
download | gcc-35c68eb5a6c2b809129a98dff357a58f4e6b527a.zip gcc-35c68eb5a6c2b809129a98dff357a58f4e6b527a.tar.gz gcc-35c68eb5a6c2b809129a98dff357a58f4e6b527a.tar.bz2 |
Move the ERROR lines to where the errors actually are.
From-SVN: r20137
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb118.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C index 01fb4a3..de0b3fe 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<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; } |