Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr47426-2.c
blob: a22e902bce450d1b876771b797c549bc36ebe298 [
file
] [
log
] [
blame
]
typedef
void
tfoo
(
int
*);
tfoo
*
getfoo
(
void
);
void
bar
(
int
*
i
)
{
(*
i
)--;
}
int
main
()
{
int
i
=
1
;
getfoo
()(&
i
);
if
(
i
)
__builtin_abort
();
return
0
;
}