Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
unsafe
/
unsafe-fn-used-as-value.rs
blob: 99506ea047c6988520491eaa4296ed09dde49005 [
file
] [
log
] [
blame
]
unsafe
fn
f
()
{
return
;
}
fn
main
()
{
let
x
=
f
;
x
();
//~^ ERROR call to unsafe function `f` is unsafe
}