Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / parse / stmtexpr3.C
blob79f689316aec042431c2ba3439b892baf995669f
1 // { dg-do compile }
2 // { dg-options "" }
4 struct B
6   int a;
7   B() : a(({ 1; })) {}
8 };