rust/src/test/run-pass/bind-native.rs
2011-11-08 15:58:08 -08:00

10 lines
131 B
Rust

/*
Can we bind native things?
*/
native "c-stack-cdecl" mod rustrt {
fn pin_task();
}
fn main() { bind rustrt::pin_task(); }