OSDN Git Service

Fix typo
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 4 Aug 2000 18:49:13 +0000 (18:49 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 4 Aug 2000 18:49:13 +0000 (18:49 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35491 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/g++.old-deja/g++.other/crash21.C

index e9e642f..dd98502 100644 (file)
@@ -9,7 +9,6 @@ struct B : public A {
   int x;
 };
 
-void B::f(int& t)
-{
+void B::f(int& t) { // ERROR - undeclared method
   x = t;
 }