Commit c2bd100e by Robert Lipe

Improvement from Klaus-Georg.

From-SVN: r20826
parent ba1a5707
...@@ -10,12 +10,12 @@ struct a { ...@@ -10,12 +10,12 @@ struct a {
void bar( double ); void bar( double );
void bar( float ); void bar( float );
void foo( void (a::*member)(float) ); void foo( void (a::*member)(float) ); // ERROR -
}; };
a::a() a::a()
{ {
foo( &junk ); // ERROR: junk is an unqualified-id. foo( &junk ); // ERROR - junk is an unqualified-id.
foo( &bar ); // ERROR: bar is an unqualified-id. foo( &bar ); // ERROR - bar is an unqualified-id.
} }
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