2011-10-11 18:01:54 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2012-07-03 16:11:00 -07:00
|
|
|
extern mod test {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2011-10-11 18:01:54 -07:00
|
|
|
unsafe fn free();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = test::free;
|
2012-06-30 12:23:59 +01:00
|
|
|
//~^ ERROR access to unsafe function requires unsafe function or block
|
2011-10-11 18:01:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|