summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug677957-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/bug677957-2.js')
-rw-r--r--js/src/jit-test/tests/basic/bug677957-2.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug677957-2.js b/js/src/jit-test/tests/basic/bug677957-2.js
new file mode 100644
index 000000000..7778dd02a
--- /dev/null
+++ b/js/src/jit-test/tests/basic/bug677957-2.js
@@ -0,0 +1,13 @@
+var x = {f: 1, g: 0};
+function f() {
+ for each (new f().nosuch.prop in x)
+ throw 'FAIL';
+}
+
+var e;
+try {
+ f();
+} catch (exc) {
+ e = exc;
+}
+assertEq(e instanceof InternalError, true);