aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/overload/operator4.C
blob: 3ec1eb472dd926093708a58e6111c99dad952fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/38174

struct VolatileIntPtr {
  operator int volatile *();
};

struct ConstIntPtr {
  operator int const *();
};

void test_with_ptrs(VolatileIntPtr vip, ConstIntPtr cip) {
  bool b1 = (vip == cip);
  long p1 = vip - cip;
}