aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb70.C
blob: 30da184597362b9893811eb60ec1bfc0d0ce7bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// conversion ops should be treated as coming from the most derived class
// for overload resolution.  See [over.match.funcs].
// Build don't link:

class X {
public:
  operator bool() const;
};

class Y : public X {
private:
  operator void*() const;
};

int f(Y const& y) {
  return bool(y);
}