blob: 3f6a2afca0ee01c7052af7ab3f3043a89e1360df [file] [log] [blame]
// Build don't link:
class c {
void (c::*x)();
public:
void f() { this->x(); } // ERROR - pointer-to-member
};