Thanks for the report, this was a hole in our declaration-statement / expression-statement disambiguation logic. Fixed in r177480.<br><br><div class="gmail_quote">On Tue, Mar 19, 2013 at 7:57 PM, ZhangXiongpang <span dir="ltr"><<a href="mailto:zhangxiongpang@gmail.com" target="_blank">zhangxiongpang@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Platform: linux, x86_64, clang 3.2<br>
<br>
I met a strange question when testing "initializer list" with clang++.<br>
It reported error at direct-list-initialization to a function pointer in a<br>
block scope.<br>
At the beginning, I guessed clang++ parse it as a function defination.<br>
Later I found it no longer reported error when I move the<br>
direct-list-initialization sentence into global scope.<br>
<br>
Test code is as follows:<br>
------------------------------------------<br>
struct X {<br>
    void foo() {}<br>
};<br>
<br>
// global scope<br>
void (*pf1)() {}; // ok<br>
void (X::*pmf1)() {&X::foo}; // ok<br>
void (X::*pmf2)() = {&X::foo}; // ok<br>
<br>
// block scope<br>
void test() {<br>
    void (*pf2)() {}; // error<br>
    void (X::*pmf3)() {&X::foo}; // error<br>
    void (X::*pmf4)() = {&X::foo}; // ok<br>
}<br>
------------------------------------------<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://clang-developers.42468.n3.nabble.com/C-11-initializer-list-problem-about-direct-list-initialization-to-a-function-pointer-tp4031054.html" target="_blank">http://clang-developers.42468.n3.nabble.com/C-11-initializer-list-problem-about-direct-list-initialization-to-a-function-pointer-tp4031054.html</a><br>

Sent from the Clang Developers mailing list archive at Nabble.com.<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br>