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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [overload/] [pmf1.C] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// { dg-do compile }
// { dg-do compile }
// Copyright (C) 2002 Free Software Foundation, Inc.
// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 04 Mar 2002 
// Contributed by Nathan Sidwell 04 Mar 2002 
//                Jason Merrill 
//                Jason Merrill 
struct A { int i; };
struct A { int i; };
struct B: private A {};
struct B: private A {};
struct C {
struct C {
  C (int A::*);
  C (int A::*);
};
};
int A::*aip = &A::i;
int A::*aip = &A::i;
void f (int B::*) {}  // should choose this, even though it's ill-formed
void f (int B::*) {}  // should choose this, even though it's ill-formed
void f (C) {}         // even though this would be well-formed
void f (C) {}         // even though this would be well-formed
int main ()
int main ()
{
{
  f (aip);  // { dg-error "'A' is an inaccessible base of 'B'|conversion" "" }
  f (aip);  // { dg-error "'A' is an inaccessible base of 'B'|conversion" "" }
}
}
 
 

powered by: WebSVN 2.1.0

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