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
/
thunk3.C
blob
9787aa9c6c278390bf59f2cf4808fe8d50e05b2d
1
// PR c++/18492
2
3
struct X{ ~X(); };
4
struct B
5
{
6
virtual void a( X ) = 0;
7
};
8
struct D : public virtual B
9
{
10
void a( X );
11
};
12
void D::a( X ){}