repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr64856.c
blob
c21d95a780a0c29d3203f9f8cb50688178b208c2
1
/* PR c/64856 */
2
/* { dg-do compile } */
3
/* { dg-options "" } */
4
5
struct
A
{
6
unsigned long
b
;
7
};
8
9
struct
B
{
10
struct
A c
[
5
];
11
};
12
13
struct
B d
= { .
c
= { [
0
...
4
] = (
struct
A
){ .
b
=
2
} } };