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

16 lines
218 B
Plaintext
Raw Normal View History

// xfail-stage1
// xfail-stage2
// xfail-stage3
2010-06-23 23:03:09 -05: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";