2011-11-14 18:51:15 -08:00
|
|
|
// xfail-fast - Somehow causes check-fast to livelock?? Probably because we're
|
|
|
|
// calling pin_task and that's having wierd side-effects.
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
#[link_name = "rustrt"]
|
|
|
|
native mod rustrt1 {
|
2012-02-03 09:34:42 +01:00
|
|
|
fn last_os_error() -> str;
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
#[link_name = "rustrt"]
|
|
|
|
native mod rustrt2 {
|
2012-02-03 09:34:42 +01:00
|
|
|
fn last_os_error() -> str;
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-02-03 09:34:42 +01:00
|
|
|
rustrt1::last_os_error();
|
|
|
|
rustrt2::last_os_error();
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|