summaryrefslogtreecommitdiffstats
path: root/third_party/rust/new_debug_unreachable/examples/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/new_debug_unreachable/examples/simple.rs')
-rw-r--r--third_party/rust/new_debug_unreachable/examples/simple.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/rust/new_debug_unreachable/examples/simple.rs b/third_party/rust/new_debug_unreachable/examples/simple.rs
new file mode 100644
index 0000000000..3da34c149e
--- /dev/null
+++ b/third_party/rust/new_debug_unreachable/examples/simple.rs
@@ -0,0 +1,11 @@
+#[macro_use]
+extern crate debug_unreachable;
+
+fn main() {
+ if 0 > 100 {
+ // Can't happen!
+ unsafe { debug_unreachable!() }
+ } else {
+ println!("Good, 0 <= 100.");
+ }
+}