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
/
ext
/
stmtexpr5.C
blob
fc84981ce4997192fa2c7ddc7904b629098fcee1
1
// PR c++/21440
2
// { dg-options "" }
3
4
struct Foo {
5
~Foo();
6
int i;
7
};
8
9
void bar() {
10
Foo foo = ({
11
Foo bletch;
12
bletch.i = 0;
13
bletch;
14
});
15
}