Index: test/message/syntactic-tail-call-of-new.js |
diff --git a/test/message/syntactic-tail-call-in-try.js b/test/message/syntactic-tail-call-of-new.js |
similarity index 83% |
copy from test/message/syntactic-tail-call-in-try.js |
copy to test/message/syntactic-tail-call-of-new.js |
index 97eb4f757ab27e898e888078a46b80a8df61097a..60adec70275b99dba702e2a2ff97410a4587d1a3 100644 |
--- a/test/message/syntactic-tail-call-in-try.js |
+++ b/test/message/syntactic-tail-call-of-new.js |
@@ -9,8 +9,5 @@ function f() { |
} |
function g() { |
- try { |
- return continue f(); |
- } catch(e) { |
- } |
+ return continue new f() ; |
} |