summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/regress/regress-592202-4.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/regress/regress-592202-4.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/js/src/tests/non262/regress/regress-592202-4.js b/js/src/tests/non262/regress/regress-592202-4.js
new file mode 100644
index 0000000000..7425280565
--- /dev/null
+++ b/js/src/tests/non262/regress/regress-592202-4.js
@@ -0,0 +1,31 @@
+/*
+ * Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/licenses/publicdomain/
+ */
+
+function p() { }
+
+function test()
+{
+ var counter = 0;
+
+ function f(x) {
+ try
+ {
+ throw 42;
+ }
+ catch(e)
+ {
+ assertEq(counter, 0);
+ p(function(){x;});
+ counter = 1;
+ }
+ }
+
+ f(2);
+ assertEq(counter, 1);
+}
+
+test();
+
+reportCompare(0, 0, "ok");