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
/
pr30189.c
blob
2f332fb0c39b88c43b189b88d143495b62646dcd
1
/* { dg-do compile } */
2
/* { dg-options "-g -O" } */
3
4
extern
void
foo
(
void
);
5
6
static
7
void
baz
(
int
i
)
8
{
9
foo
();
10
typedef
char
A
[
i
];
11
struct
{
A b
; } *
x
=
0
;
12
}
13
14
void
15
bar
(
int
i
)
16
{
17
baz
(
i
);
18
}