aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>2000-08-04 18:49:13 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-08-04 18:49:13 +0000
commit4f3aeae1dc3432c4869b606e88b8ed898d4d0272 (patch)
treed89e7a54a3b25c03611040c8e025aeed39e5640a
parent452a394bc37bc65c043097d18efc8c95a3876615 (diff)
downloadgcc-4f3aeae1dc3432c4869b606e88b8ed898d4d0272.zip
gcc-4f3aeae1dc3432c4869b606e88b8ed898d4d0272.tar.gz
gcc-4f3aeae1dc3432c4869b606e88b8ed898d4d0272.tar.bz2
Fix typo
From-SVN: r35491
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/crash21.C3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash21.C b/gcc/testsuite/g++.old-deja/g++.other/crash21.C
index e9e642f..dd98502 100644
--- a/gcc/testsuite/g++.old-deja/g++.other/crash21.C
+++ b/gcc/testsuite/g++.old-deja/g++.other/crash21.C
@@ -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;
}