rust/src/test/run-pass/native.rc

17 lines
234 B
Plaintext
Raw Normal View History

// xfail-stage0
// xfail-stage1
// xfail-stage2
// xfail-stage3
2010-06-23 21:03:09 -07:00
// -*- rust -*-
native "rust" mod rustrt {
fn str_buf(str s) -> int;
}
native mod libc = target_libc {
fn puts(int s) -> ();
}
mod user = "native-src/native.rs";