PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ptrmem6.C
blob6dac21cf979f31840f162b0b4e6665ad0cd8f6e0
1 //PR C++/27805
3 struct A;
5 void foo()
7     int A::* p;
8     A a; // { dg-error "incomplete type" }
9     a.*p;
10