rustc/vendor/psm-0.1.24/examples/info.rs
2025-02-17 11:14:05 +01:00

21 lines
392 B
Rust

extern crate psm;
psm::psm_stack_information! {
yes {
fn main() {
println!("Stack is {:?} and is at {:p} currently",
psm::StackDirection::new(), psm::stack_pointer());
}
}
no {
fn main() {
eprintln!("Stack information not supported by this target");
}
}
}
#[test]
fn run_example() {
main();
}