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
/
init
/
new6.C
blob
ecbafd13e6c0a1c85141807fa55278d8e29cdc50
1
// { dg-options "-fkeep-inline-functions" }
2
3
struct B1 { virtual ~B1(); };
4
struct B2 { virtual ~B2(); };
5
struct D : B1, B2 {};
6
struct X : D { X (); };
7
8
X::X () { new int; }