Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
statics
/
auxiliary
/
static-function-pointer-aux.rs
blob: 4dfc25764a4fabe5a430b37738127c9e29784b32 [
file
] [
log
] [
blame
] [
edit
]
pub
fn
f
(
x
:
isize
)
->
isize
{
-
x
}
pub
static
F
:
fn
(
isize
)
->
isize
=
f
;
pub
static
mut
MutF
:
fn
(
isize
)
->
isize
=
f
;