Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / ptrmem13.C
blob84374ea05fc0a05842c25262ab6daac9f7e9feec
1 // PR c++/20734
3 struct A;
4 void blah(int A::*);
5 struct A{
6   int a;
7 };
8 template<typename T>
9 void hoho(){
10   blah(&A::a);