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
/
pr108375-2.c
blob
0401ead5b2143e40516068d239d7b33fe6dc1b89
1
/* PR 108375
2
* { dg-do compile }
3
* { dg-options "" }
4
* */
5
6
void
7
f
(
int
a
)
8
{
9
typedef
int
A
[
a
];
10
goto
x
;
/* { dg-error "jump into scope of identifier with variably modified type" } */
11
A
*
p
[
2
];
12
x
: ;
13
}
14
15