This is a follow up question to Is this reference-initialization or aggregate-initialization?
Consider the same example:
struct A {};
struct B : A{};
A a{ B() };
Does this is an aggregate initialization or reference initialization?
I mean by "reference-initialization" that the implicity-declared copy constructor A::A(const A&) is used where the reference parameter is bound to A subobject of the initializer expression B().
Also why this is not an aggregate initialization even though the class A is an aggregate class?