OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / stmtexpr5.C
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 }