Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
morestack-address.rs
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
);
}