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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr108375-1.c
blob
1cbb05b03ce82a572915e487d6bca4629fca8b13
1
/* PR 108375
2
* { dg-do compile }
3
* { dg-options "" }
4
* */
5
6
void
7
f
(
int
a
)
8
{
9
goto
x
;
/* { dg-error "jump into scope of identifier with variably modified type" } */
10
struct
{
char
(*
p
)[
a
]; }
B
;
11
x
: ;
12
}
13
14