aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/pmem3.C
blob: 1476266f622493fcdac098993517df529bc50059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do run  }
// Test that comparison of pointers to members does not complain about
// contravariance violation.

struct A { int i; };
struct B : public A { int j; int f (); };
int main ()
{
  int A::*apm = &A::i;
  int B::*bpm = apm;
  return apm != bpm;
}