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; }