summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug657986.js
blob: eacaf67f1834a2f8c6dd07af98204b9fb3fbd81a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Binary: cache/js-dbg-32-5d1cbc94bc42-linux
// Flags: -m -n -a
//
function f(x) {
    this.i = x;
}
for each(let e in [0, 0, []]) {
    try {
        f(e)
    } catch (e) {}
}
print(uneval(this))