Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
statics
/
auxiliary
/
static-function-pointer-aux.rs
blob: 4dfc25764a4fabe5a430b37738127c9e29784b32 [
file
] [
log
] [
blame
]
pub
fn
f
(
x
:
isize
)
->
isize
{
-
x
}
pub
static
F
:
fn
(
isize
)
->
isize
=
f
;
pub
static
mut
MutF
:
fn
(
isize
)
->
isize
=
f
;