aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/conversion/ptrmem7.C
blob: ad75a52bc5e35e402bdbdd9f796083ec78d3add0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2007 Free Software Foundation
// Contributed by Ollie Wild <aaw@google.com>
// { dg-do compile }

// Assorted pointer to member function implicit 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.
int (D::*p1)() = &B::f;

// Derived class.
int (B::*p2)() = &D::f; // { dg-error "" }

// Virtual base class.
int (D::*p3)() = &V::f; // { dg-error "" }

// Inaccessible base class.
int (D::*p4)() = &P::f; // { dg-error "" }

// Ambiguous base class.
int (D::*p5)() = &A::f;  // { dg-error "" }

// Different member type.
float (D::*p6)() = &B::f;  // { dg-error "" }