aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/ptrmem3.C
blob: 3f6a2afca0ee01c7052af7ab3f3043a89e1360df (plain)
1
2
3
4
5
6
7
// Build don't link:

class c {
  void (c::*x)();
public:
  void f() { this->x(); } // ERROR - pointer-to-member
};