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
/
pr92524.C
blob
ffbcd8f9f3abee58e86bb24818b76b080ec168ed
1
// PR c++/92524
2
// { dg-do compile { target c++11 } }
3
4
struct A { char a = '*'; };
5
struct B { A b[64]; };
6
7
void
8
foo ()
9
{
10
A a;
11
B{a};
12
}