blob: 28eccc2637db6ca015ddb8f8f7d904088383e834 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct N { N(int); };
struct A { N i,j; };
int main()
{
A* ap = new A{1,2};
}