OSDN Git Service

PR c++/26291
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / access5.C
1 // { dg-do compile }
2
3 // Origin: Giovanni Bajo <giovannibajo@libero.it>
4
5 // PR c++/11174: Access checking on pointer to member data.
6
7 struct A 
8 {
9 protected:
10   int a;                        // { dg-error "protected" }
11 };
12
13 struct B : A 
14 {
15   void foo() {
16     (void)&A::a;                // { dg-error "this context" }
17   }
18 };