repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ignore invalid DOF provider sections
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.cp
/
pr-1210.cc
blob
5747e5da58d7966c0cf92cb68e621a3e3d4e43dc
1
class
A
2
{
3
};
4
5
class
B
:
virtual public
A
6
{
7
};
8
9
class
C
:
public
A
10
{
11
protected
:
12
B myB
;
13
};
14
15
int
main
()
16
{
17
C
*
obj
=
new
C
();
18
return
0
;
19
}