Commit f4c81730 by Mark Mitchell

New test

From-SVN: r19277
parent ea8693a4
// Build don't link:
// Special g++ Options: -pedantic-errors
void cheat( int* i ) { ++(*i); }
struct t {
void cheat( int& i ) { ++i; }
};
int main()
{
void (t::*member)( const int& ) = &t::cheat; // ERROR - conversion
void (*cheater)( const int* ) = &cheat; // ERROR - converting
t t2;
const int i=1;
int j=1;
(t2.*member)( i );
(t2.*member)( j );
}
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