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
PR c/79089
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr79089.c
blob
523798824b6d3ebe8d541d60359fa6392f83b9f3
1
/* PR c/79089 */
2
3
struct
S
{
int
b
; };
4
struct
T
{
struct
S c
; }
a
;
5
int
d
;
6
struct
S e
;
7
8
void
9
foo
()
10
{
11
e
= ({
d
++;
a
.
c
= (
struct
S
) {}; });
12
}