Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
foreign-unsafe-fn-called.rs
blob: de3de286fc93ae6bc80343f56d1e737af46b4116 [
file
] [
log
] [
blame
]
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
mod
test
{
extern
"C"
{
pub
fn
free
();
}
}
fn
main
()
{
test
::
free
();
//~^ ERROR call to unsafe function is unsafe
}