summary refs log tree commit diff
path: root/src/test/run-pass/native-dupe.rs
blob: 139189f4b9c28e5b8eca8ad98e0415e5bcb4e141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// xfail-fast - Somehow causes check-fast to livelock?? Probably because we're
// calling pin_task and that's having wierd side-effects.

#[abi = "cdecl"]
#[link_name = "rustrt"]
native mod rustrt1 {
    fn last_os_error() -> str;
}

#[abi = "cdecl"]
#[link_name = "rustrt"]
native mod rustrt2 {
    fn last_os_error() -> str;
}

fn main() {
    rustrt1::last_os_error();
    rustrt2::last_os_error();
}