about summary refs log tree commit diff
path: root/tests/ui/unreachable-code-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unreachable-code-1.rs')
-rw-r--r--tests/ui/unreachable-code-1.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/ui/unreachable-code-1.rs b/tests/ui/unreachable-code-1.rs
deleted file mode 100644
index 9c5f7c8f451..00000000000
--- a/tests/ui/unreachable-code-1.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-//@ run-pass
-
-#![allow(unused_must_use)]
-#![allow(unreachable_code)]
-
-#![allow(unused_variables)]
-#![allow(dead_code)]
-
-fn id(x: bool) -> bool { x }
-
-fn call_id() {
-    let c = panic!();
-    id(c);
-}
-
-fn call_id_3() { id(return) && id(return); }
-
-pub fn main() {
-}