blob: 5779bd356e96c1b6a6a6577e48da7997c53678fc [file] [log] [blame]
#[nolink]
#[abi = "rust-intrinsic"]
extern mod rusti {
#[legacy_exports];
fn morestack_addr() -> *();
}
fn main() {
let addr = rusti::morestack_addr();
assert addr.is_not_null();
error!("%?", addr);
}