mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-12 19:58:01 +08:00
update
From-SVN: r19428
This commit is contained in:
parent
6b2fe0fbe4
commit
6c58160c11
@ -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 -
|
||||
|
Loading…
Reference in New Issue
Block a user