Commit 6c58160c by Jason Merrill

update

From-SVN: r19428
parent 6b2fe0fb
...@@ -7,6 +7,6 @@ public: ...@@ -7,6 +7,6 @@ public:
int DoSomething(); int DoSomething();
}; };
int (Foo::*pA)() = { &Foo::DoSomething }; // ERROR - int (Foo::*pA)() = { &Foo::DoSomething };
int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR - int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR -
int (Foo::*Y[])(int) = { { &Foo::DoSomething, &Foo::DoSomething, 0 } }; // ERROR - int (Foo::*Y[])(int) = { { &Foo::DoSomething, &Foo::DoSomething, 0 } }; // ERROR -
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment