URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [expr/] [bound-mem-fun.C] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/38228
// { dg-do "compile" }
struct A
{
A ();
template<typename T> A(T);
};
struct B
{
int foo();
};
A a = B().*(&B::foo); // { dg-error "invalid use of non-static member function" }
Go to most recent revision | Compare with Previous | Blame | View Log