OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / stmtexpr7.C
1 // PR c++/24686
2 // { dg-options "" }
3
4 struct A
5 {
6   ~A();
7 };
8 bool h(int, const A&);
9 int f();
10 int i;
11 void g()
12 {
13   i && (A(), ({ static int l = f(); l; }));
14 }