// Copyright (C) 2007 Free Software Foundation // Contributed by Ollie Wild // { dg-do compile } // Assorted pointer to member function static cast tests. struct A { int f (); }; struct B : A { int f (); }; struct P : A { int f (); }; struct V { int f (); }; struct D : B, virtual V, private P { int f (); }; // Valid static casts. int (B::*p1)() = static_cast(&D::f); int (D::*p2)() = static_cast(&B::f); // Virtual base class. int (V::*p3)() = static_cast(&D::f); // { dg-error "" } int (D::*p4)() = static_cast(&V::f); // { dg-error "" } // Inaccessible base class. int (P::*p5)() = static_cast(&D::f); // { dg-error "" } int (D::*p6)() = static_cast(&P::f); // { dg-error "" } // Ambiguous base class. int (A::*p7)() = static_cast(&D::f); // { dg-error "" } int (D::*p8)() = static_cast(&A::f); // { dg-error "" } // Attempts to change member type. float (B::*p13)() = static_cast(&D::f); // { dg-error "" } float (D::*p14)() = static_cast(&B::f); // { dg-error "" }