Sign in
third-party-mirror
/
mingw-w64
/
3ddfe8ff2828f2adc0603774c74ac68d5f7c1a13
/
.
/
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
;
}