about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-897.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/issue-897.rs')
-rw-r--r--src/test/compile-fail/issue-897.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/issue-897.rs b/src/test/compile-fail/issue-897.rs
index 944546d0b4a..b9cfbd695b0 100644
--- a/src/test/compile-fail/issue-897.rs
+++ b/src/test/compile-fail/issue-897.rs
@@ -11,8 +11,8 @@
 #![deny(unreachable_code)]
 
 fn f() -> ! {
-    return fail!(); //~ ERROR `return` in a function declared as diverging
-    fail!(); // the unreachable statement error is in <std macro>, at this line, there
+    return panic!(); //~ ERROR `return` in a function declared as diverging
+    panic!(); // the unreachable statement error is in <std macro>, at this line, there
              // only is a note
 }