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
/
pr108423-2.c
blob
006e45a96298278eb151c758848dccd847442493
1
/* PR108423
2
* { dg-do compile }
3
* { dg-options "-O2" }
4
*/
5
6
void
f
(
int
n
,
int
(*
a
(
void
))[
n
])
7
{
8
(
a
())[
0
];
9
}
10
11
void
g
(
void
)
12
{
13
int
(*
a
(
void
))[
1
];
14
f
(
1
,
a
);
15
}
16