11 lines
137 B
Rust
11 lines
137 B
Rust
mod test {
|
|
extern {
|
|
pub fn free();
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
test::free();
|
|
//~^ ERROR call to unsafe function is unsafe
|
|
}
|