summaryrefslogtreecommitdiffstats
path: root/vendor/psm/examples/info.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/psm/examples/info.rs')
-rw-r--r--vendor/psm/examples/info.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/psm/examples/info.rs b/vendor/psm/examples/info.rs
new file mode 100644
index 000000000..46a619b68
--- /dev/null
+++ b/vendor/psm/examples/info.rs
@@ -0,0 +1,20 @@
+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();
+}