Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
unsafe
/
unsafe-fn-used-as-value.rs
blob: 9517598c7ce57e20a2987f0bc7c92ea7ce3e2ffc [
file
] [
log
] [
blame
]
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
unsafe
fn
f
()
{
return
;
}
fn
main
()
{
let
x
=
f
;
x
();
//[mir]~^ ERROR call to unsafe function is unsafe
//[thir]~^^ ERROR call to unsafe function `f` is unsafe
}