aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1998-04-27 06:19:31 -0400
committerJason Merrill <jason@gcc.gnu.org>1998-04-27 06:19:31 -0400
commit6c58160c115d8880c9f77f4c1d5d99d5fea5f857 (patch)
tree59975a66de82f91345b69d2ca2c12d962ea3c28b
parent6b2fe0fbe437cc48ba37d48db8e0b5d9e5d6ca2e (diff)
downloadgcc-6c58160c115d8880c9f77f4c1d5d99d5fea5f857.zip
gcc-6c58160c115d8880c9f77f4c1d5d99d5fea5f857.tar.gz
gcc-6c58160c115d8880c9f77f4c1d5d99d5fea5f857.tar.bz2
update
From-SVN: r19428
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/p9129.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/p9129.C b/gcc/testsuite/g++.old-deja/g++.mike/p9129.C
index d94f46f..d66dab5 100644
--- a/gcc/testsuite/g++.old-deja/g++.mike/p9129.C
+++ b/gcc/testsuite/g++.old-deja/g++.mike/p9129.C
@@ -7,6 +7,6 @@ public:
int DoSomething();
};
-int (Foo::*pA)() = { &Foo::DoSomething }; // ERROR -
-int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR -
+int (Foo::*pA)() = { &Foo::DoSomething };
+int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR -
int (Foo::*Y[])(int) = { { &Foo::DoSomething, &Foo::DoSomething, 0 } }; // ERROR -