2011-10-11 20:01:54 -05:00
|
|
|
// -*- rust -*-
|
2012-05-11 15:09:19 -05:00
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod test {
|
2011-10-11 20:01:54 -05:00
|
|
|
unsafe fn free();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
test::free();
|
2012-05-11 15:09:19 -05:00
|
|
|
//!^ ERROR access to unsafe function requires unsafe function or block
|
2011-10-11 20:01:54 -05:00
|
|
|
}
|
|
|
|
|