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
/
opt
/
nrv6.C
blob
57ff12e41f4f5f6d72f460ef0326e0c15d4a68a3
1
// PR c++/9993
2
// Bug: We were failing to destroy b.
3
4
// { dg-do run }
5
6
int c, d;
7
8
struct Object {
9
Object() { ++c; }
10
Object(const Object&) { ++c; }
11
~Object() { ++d; }
12
};
13
14
Object function() {
15
int i = 0;
16
do {
17
Object b;
18
if (i++ == 2)
19
return b;
20
} while (1);
21
}
22
23
int main() {
24
function();
25
return c != d;
26
}