2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / access5.C
blobcd1789eedda0c5d31127e07db9158406ff4607af
1 // { dg-do compile }
3 // Origin: Giovanni Bajo <giovannibajo@libero.it>
5 // PR c++/11174: Access checking on pointer to member data.
7 struct A 
9 protected:
10   int a;                        // { dg-error "protected" }
13 struct B : A 
15   void foo() {
16     (void)&A::a;                // { dg-error "this context" }
17   }