OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [conversion/] [ptrmem7.C] - Rev 779

Go to most recent revision | Compare with Previous | Blame | View Log

// 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 "" }

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.