Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
8a3edb1d661ed5ce685bd5dcfa600b6e02897b86
/
.
/
src
/
test
/
ui
/
foreign-unsafe-fn-called.rs
blob: abbe462021ed74c14b8a6b0912123e1afcb4473e [
file
] [
log
] [
blame
]
mod
test
{
extern
"C"
{
pub
fn
free
();
}
}
fn
main
()
{
test
::
free
();
//~^ ERROR call to unsafe function is unsafe
}