repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
access5.C
blob
cd1789eedda0c5d31127e07db9158406ff4607af
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
};