Sign in
third-party-mirror
/
mingw-w64
/
256313314c6358378881191149f16ec8f762ea9c
/
.
/
mingw-w64-crt
/
testcases
/
t_ivma.c
blob: 5afbeb56c1386fbc4941475133e5b0c32801dd77 [
file
] [
log
] [
blame
]
struct
s1
{
int
x
;
};
struct
s2
{
int
x
;
};
struct
s1
*
f
(
struct
s1
*(*
g
)(
void
))
{
return
(*
g
)();
}
struct
s2
*
h
(
void
)
{
return
0
;
}
int
main
(
void
)
{
f
((
struct
s1
*(*)(
void
))
h
);
return
0
;
}