Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
unsafe
/
foreign-unsafe-fn-called.rs
blob: b5065beb5fcb8804b7b5bd5f4a4ea36a6fb1093d [
file
] [
log
] [
blame
]
mod
test
{
extern
"C"
{
pub
fn
free
();
}
}
fn
main
()
{
test
::
free
();
//~^ ERROR call to unsafe function `test::free` is unsafe
}