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;
});
}