repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-array13.C
blob
92fe97164cd33660408615a8de46c6c5ae1a02b7
1
// PR c++/63707
2
// { dg-do compile { target c++11 } }
3
4
struct Child
5
{
6
Child (int);
7
~Child ();
8
Child (const Child &) = delete;
9
};
10
11
struct Parent
12
{
13
Parent () : children {{5}, {7}} {}
14
15
Child children[2];
16
};