summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug861419.js
blob: 20496f662084c4bd796f5d4a90c71c9d7b4c5f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
arguments = [];
try {
    arguments.toSource = (function() {
        __proto__.y = x
    })
    y = this
    print(x = 8)
    a = arguments
    for (v of this) {}
} catch (e) {}
function f() {
  "HELLO " + y
}
f()
f()
y = 1[7]
f()