Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / ext / stmtexpr7.C
blob87ca39b566ccdea7a5869963a1e60dcdc22a29aa
1 // PR c++/24686
2 // { dg-options "" }
4 struct A
6   ~A();
7 };
8 bool h(int, const A&);
9 int f();
10 int i;
11 void g()
13   i && (A(), ({ static int l = f(); l; }));