about summary refs log tree commit diff
path: root/src/test/run-fail/morestack4.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-fail/morestack4.rs')
-rw-r--r--src/test/run-fail/morestack4.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-fail/morestack4.rs b/src/test/run-fail/morestack4.rs
index a4df5e57923..02a65e91d04 100644
--- a/src/test/run-fail/morestack4.rs
+++ b/src/test/run-fail/morestack4.rs
@@ -22,7 +22,7 @@ fn getbig_and_fail(i: int) {
     if i != 0 {
         getbig_and_fail(i - 1);
     } else {
-        fail2!();
+        fail!();
     }
 }