projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
711734a
)
Move the ERROR lines to where the errors actually are.
author
Robert Lipe
<robertl@gcc.gnu.org>
Fri, 29 May 1998 07:48:37 +0000
(07:48 +0000)
committer
Robert 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
patch
|
blob
|
history
diff --git
a/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C
b/gcc/testsuite/g++.old-deja/g++.robertl/eb118.C
index 01fb4a3d078a5aa3b2502d9683354bbdf4e1f168..de0b3fe139583e56196ff4dda052a30dba4c3e9c 100644
(file)
--- 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;
}