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