1 // { dg-do compile { target c++11 } }
2 
3 struct A
4 {
5   int i = (A(), 42);		// { dg-error "" }
6 };
7 
8 A a;
9