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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20050620-1.c
blob
0a9e1d478454df131ad40319de731ea6bdefad3e
1
/* PR middle-end/22028 */
2
/* { dg-do compile } */
3
/* { dg-options "" } */
4
5
void
6
foo
(
void
)
7
{
8
struct
{
int
i
[]; }
u
;
9
}
10
11
void
12
bar
(
void
)
13
{
14
struct
{
struct
a b
; }
c
;
/* { dg-error "has incomplete type" } */
15
}