1 // PR c++/20734
2 
3 struct A;
4 void blah(int A::*);
5 struct A{
6   int a;
7 };
8 template<typename T>
hoho()9 void hoho(){
10   blah(&A::a);
11 }
12