rust/src/test/run-pass/bind-native.rs
2012-02-02 18:10:24 -08:00

11 lines
126 B
Rust

/*
Can we bind native things?
*/
#[abi = "cdecl"]
native mod rustrt {
fn do_gc();
}
fn main() { bind rustrt::do_gc(); }