2012-03-10 02:04:09 -06:00
|
|
|
// xfail-fast
|
|
|
|
// aux-build:native_lib.rs
|
2011-10-21 14:14:01 -05:00
|
|
|
|
|
|
|
// The purpose of this test is to check that we can
|
2011-11-09 18:04:07 -06:00
|
|
|
// successfully (and safely) invoke external, cdecl
|
2011-10-21 14:14:01 -05:00
|
|
|
// functions from outside the crate.
|
|
|
|
|
2012-03-10 02:04:09 -06:00
|
|
|
use native_lib;
|
|
|
|
|
2011-10-21 14:14:01 -05:00
|
|
|
fn main() {
|
2012-03-10 02:04:09 -06:00
|
|
|
let foo = native_lib::rustrt::last_os_error();
|
2011-11-18 18:29:01 -06:00
|
|
|
}
|