Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
921215-1.c
blob: 6d2f9b4aa8042ea91b14ac1f672fcd5b747335a9 [
file
] [
log
] [
blame
]
/* { dg-require-effective-target trampolines } */
/* { dg-additional-options "-std=gnu89" } */
main
()
{
void
p
(
void
((*
f
)
(
void
())))
{
void
r
()
{
foo
();
}
f
(
r
);
}
void
q
(
void
((*
f
)()))
{
f
();
}
p
(
q
);
exit
(
0
);
}
foo
(){}