Sign in
◑
Theme
mingw
/
mingw-w64
/
77ab4dcf5afeaab2779e8895dc7bc8384e106fce
/
.
/
mingw-w64-crt
/
testcases
/
t_ivma.c
blob: 5afbeb56c1386fbc4941475133e5b0c32801dd77 [
file
]
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
;
}