summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unreachable-code-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unreachable-code-1.rs')
-rw-r--r--src/test/ui/unreachable-code-1.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/unreachable-code-1.rs b/src/test/ui/unreachable-code-1.rs
deleted file mode 100644
index ee44f3999..000000000
--- a/src/test/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() {
-}