blob: b31bba13cf3f7751e3d02324a786fce311a749da [file] [log] [blame]
// 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" }