rust/src/test/run-pass/invoke-external-native.rs

13 lines
266 B
Rust
Raw Normal View History

2012-03-10 02:04:09 -06:00
// xfail-fast
// aux-build:native_lib.rs
// The purpose of this test is to check that we can
// successfully (and safely) invoke external, cdecl
// functions from outside the crate.
2012-03-10 02:04:09 -06:00
use native_lib;
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
}