OSDN Git Service

* c-c++-common/raw-string-1.c: Combine C and C++ raw string tests.
[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 }