blob: 9ceabd3642bc98e9aa0019dcf75fef9bef712fd2 [file] [log] [blame]
// PR c++/85356
struct A
{
A& operator=(int);
};
void foo(A&(A::*)(int));
template<int> void bar()
{
foo(&A::operator=);
}