about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-fail/unreachable-fmt-msg.rs14
-rw-r--r--src/test/run-fail/unreachable-static-msg.rs12
-rw-r--r--src/test/run-fail/unreachable.rs (renamed from src/test/run-fail/unreachable-macro-fail.rs)0
3 files changed, 26 insertions, 0 deletions
diff --git a/src/test/run-fail/unreachable-fmt-msg.rs b/src/test/run-fail/unreachable-fmt-msg.rs
new file mode 100644
index 00000000000..f005fa4476c
--- /dev/null
+++ b/src/test/run-fail/unreachable-fmt-msg.rs
@@ -0,0 +1,14 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// error-pattern:internal error: entered unreachable code: 6 is not prime
+fn main() {
+    unreachable!("{} is not {}", 6u32, "prime");
+}
diff --git a/src/test/run-fail/unreachable-static-msg.rs b/src/test/run-fail/unreachable-static-msg.rs
new file mode 100644
index 00000000000..25894a88541
--- /dev/null
+++ b/src/test/run-fail/unreachable-static-msg.rs
@@ -0,0 +1,12 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// error-pattern:internal error: entered unreachable code: uhoh
+fn main() { unreachable!("uhoh") }
diff --git a/src/test/run-fail/unreachable-macro-fail.rs b/src/test/run-fail/unreachable.rs
index 07e05c6fed9..07e05c6fed9 100644
--- a/src/test/run-fail/unreachable-macro-fail.rs
+++ b/src/test/run-fail/unreachable.rs