repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
compound-literal-1.c
blob
968bb450a7134ae7555acfd6441b9f3a3269bf82
1
/* ICE incrementing compound literal: bug 28418 from Volker Reichelt
2
<reichelt@gcc.gnu.org>. */
3
4
struct
A
{
int
i
; };
5
6
void
foo
()
7
{
8
((
struct
A
) {
0
}).
i
+=
1
;
9
}