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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
using3.C
blob
d2acf80099a49a9cf9fadd9837681b0ffce3d981
1
class A
2
{
3
public:
4
typedef int T;
5
int a;
6
};
7
8
class B : virtual private A
9
{
10
};
11
12
class C : virtual private A, public B
13
{
14
public:
15
using A::a;
16
using A::T;
17
};
18
19
C::T x;