Hi there..

struct A{
A(int){}
};

struct B{
B() : ????
A a[10];
};

How can I initialize array of A in initialization list?