aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/pmem3.C
blob: 343953b960454a8c342480f13ef32554e0df3634 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 (); };
main ()
{
  int A::*apm = &A::i;
  int B::*bpm = apm;
  return apm != bpm;
}