aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/overload8.C
blob: 4615bd848eb5274f9d30999217bf01a2d5ed3bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do run  }
class a {
public:
  int f()        { return 0; }
  int f() const  { return 1; }
};

class b : public a {
};

int main() 
{
  int (b::* ptr1)()       = &b::f; 
  int (b::* ptr2)() const = &b::f; 
  
  b ao;
  
  if ((ao.*ptr1)() != 0)
    return 1;
  if ((ao.*ptr2)() != 1)
    return 1;
}