URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [pmf2.C] - Rev 710
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/561
class A { };
struct B : public A
{
void foo ();
void foo (int);
template <class T>
void bar (T);
template <class T>
void bar (T, T);
};
int main ()
{
void (A::*f1)() = (void (A::*)()) &B::foo;
void (A::*f2)(int) = (void (A::*)(int)) &B::bar;
void (A::*f3)(int) = (void (A::*)(int)) &B::bar<int>;
}
Go to most recent revision | Compare with Previous | Blame | View Log