blob: 84374ea05fc0a05842c25262ab6daac9f7e9feec [file] [log] [blame]
// PR c++/20734
struct A;
void blah(int A::*);
struct A{
int a;
};
template<typename T>
void hoho(){
blah(&A::a);
}