repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr40388.C
blob
63fbbfba5a25f5d49e6a21fc928e50c7cdba9d1e
1
void foo();
2
3
struct A
4
{
5
~A()
6
{
7
try
8
{
9
foo();
10
foo();
11
}
12
catch (...)
13
{
14
}
15
}
16
};
17
18
void bar()
19
{
20
A a1, a2;
21
}