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/] [overload/] [pmf2.C] - Diff between revs 301 and 338

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

Rev 301 Rev 338
// PR c++/561
// PR c++/561
class A { };
class A { };
struct B : public A
struct B : public A
{
{
  void foo ();
  void foo ();
  void foo (int);
  void foo (int);
  template 
  template 
  void bar (T);
  void bar (T);
  template 
  template 
  void bar (T, T);
  void bar (T, T);
};
};
int main ()
int main ()
{
{
  void (A::*f1)() = (void (A::*)()) &B::foo;
  void (A::*f1)() = (void (A::*)()) &B::foo;
  void (A::*f2)(int) = (void (A::*)(int)) &B::bar;
  void (A::*f2)(int) = (void (A::*)(int)) &B::bar;
  void (A::*f3)(int) = (void (A::*)(int)) &B::bar;
  void (A::*f3)(int) = (void (A::*)(int)) &B::bar;
}
}
 
 

powered by: WebSVN 2.1.0

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