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
/
synth1.C
blob
6c00bc0228e39fefaa676b8dbe5c7f4f492d64b9
1
// PR middle-end/17525
2
3
struct A
4
{
5
~A();
6
int a;
7
};
8
9
struct B : public A
10
{
11
virtual ~B();
12
};
13
14
void run (B& b, B& b1)
15
{
16
b1 = b;
17
}