Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
function-pointer-inheritance.c
blob: 0b24e45882f2bb35c4ea9620ecf7bc4678dbe937 [
file
] [
log
] [
blame
]
extern
int
foo
(
int
f
(
int
,
void
*));
int
foo
(
int
(*
f
)(
int
,
void
*))
{
return
0
;
}
/*
* check-name: Function pointer inheritance
*/