Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
paren-init9.C
blob: 7058d274c1d35a765e269bbdce74d597b8b9ba94 [
file
] [
log
] [
blame
]
// 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
);