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