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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr58201.h
blob
6071ccdf87748601bc0c58bb303947270657b07d
1
class
A
2
{
3
protected
:
4
A
();
5
virtual
~
A
();
6
};
7
8
class
B
:
virtual public
A
9
{
10
public
:
11
B
();
12
virtual
~
B
();
13
};
14
15
class
C
16
{
17
private
:
18
class
C2
:
public
B
19
{
20
public
:
21
C2
();
22
virtual
~
C2
();
23
};
24
};