summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1196210.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1196210.js')
-rw-r--r--js/src/jit-test/tests/gc/bug-1196210.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1196210.js b/js/src/jit-test/tests/gc/bug-1196210.js
new file mode 100644
index 000000000..dbdf4fe81
--- /dev/null
+++ b/js/src/jit-test/tests/gc/bug-1196210.js
@@ -0,0 +1,14 @@
+function foo() {
+ function testGeneratorDeepBail() {
+ gc();
+ for (let i = 0; Error(); i++) {
+ for each(var x in [{n: 1}, {n: 1}]) {
+ x[0] = 0;
+ Object.freeze(x);
+ }
+ if (i == 10)
+ break;
+ }
+ }
+ testGeneratorDeepBail();
+} foo();