diff options
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug595921.js')
-rw-r--r-- | js/src/jit-test/tests/jaeger/bug595921.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug595921.js b/js/src/jit-test/tests/jaeger/bug595921.js new file mode 100644 index 000000000..7f4933a21 --- /dev/null +++ b/js/src/jit-test/tests/jaeger/bug595921.js @@ -0,0 +1,9 @@ +/* Don't assert. */ +x = [1,2,3] +function f(aaa) { + aaa.e = x +} +for each(let c in [x, x, x]) { + f(c) +} +assertEq(0,0); |