1 2 3 4 5 6 7 8 9 10
// PR c++/91363 - P0960R3: Parenthesized initialization of aggregates. // { dg-do compile { target c++20 } } struct B { }; struct A : B { int i; }; B b; A a(b);