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