Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
stmtexpr5.C
blob: fc84981ce4997192fa2c7ddc7904b629098fcee1 [
file
] [
log
] [
blame
]
// PR c++/21440
// { dg-options "" }
struct
Foo
{
~
Foo
();
int
i
;
};
void
bar
()
{
Foo
foo
=
({
Foo
bletch
;
bletch
.
i
=
0
;
bletch
;
});
}