summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug595921.js
blob: 7f4933a213862033cf907a0c5352afb07800f76c (plain)
1
2
3
4
5
6
7
8
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);