Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-array13.C
blob: 92fe97164cd33660408615a8de46c6c5ae1a02b7 [
file
] [
log
] [
blame
]
// PR c++/63707
// { dg-do compile { target c++11 } }
struct
Child
{
Child
(
int
);
~
Child
();
Child
(
const
Child
&)
=
delete
;
};
struct
Parent
{
Parent
()
:
children
{{
5
},
{
7
}}
{}
Child
children
[
2
];
};