Fix typo
authorMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 4 Aug 2000 18:49:13 +0000 (18:49 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 4 Aug 2000 18:49:13 +0000 (18:49 +0000)
From-SVN: r35491

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

index e9e642f7f794724dde536d87040a7c5014f2f676..dd98502c3a5c0d1489ffc088bdbb7dedc9ea6c86 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;
 }