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

11 lines
222 B
Rust
Raw Normal View History

2011-11-18 18:29:01 -06:00
use std;
import sys;
// The purpose of this test is to check that we can
// successfully (and safely) invoke external, cdecl
// functions from outside the crate.
fn main() {
let foo = sys::rustrt::last_os_error();
2011-11-18 18:29:01 -06:00
}