aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/native.rc
blob: 386f417cf6a4ff062a074d08fd34654a45c80e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// xfail-stage0
// xfail-stage1
// xfail-stage2
// -*- 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";