1 // { dg-do compile { target c++11 } }
2 
3 struct N { N(int); };
4 struct A { N i,j; };
5 
main()6 int main()
7 {
8   A* ap = new A{1,2};
9 }
10