1 // PR c++/27806
2 
3 struct A {};
4 
foo()5 void foo()
6 {
7   p;  // { dg-error "p" }
8   extern int A::* p;
9 }
10