Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930608-1.c
blob: fd2675904817e51ac7eddee33a1dd9a94712ee83 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu17" } */
void
abort
(
void
);
void
exit
(
int
);
double
f
(
double
a
)
{}
double
(*
const
a
[])
(
double
)
=
{&
f
};
int
main
(
void
)
{
double
(*
p
)
();
p
=
&
f
;
if
(
p
!=
a
[
0
])
abort
();
exit
(
0
);
}