repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
access8.C
blob
a11ea8e04943e49c1b4ae09e14412a94de67228c
1
// PR c++/29138
2
3
class A
4
{
5
public:
6
int i;
7
class A1
8
{
9
int j;
10
};
11
};
12
13
class B : private A
14
{
15
public:
16
A::i;
17
A::A1;
18
};
19
20
void
21
f ()
22
{
23
B b;
24
B::A1 a1;
25
}