summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug678141.js
blob: 644f136446483419ab330d81cf10e3a7848e0f0e (plain)
1
2
3
4
5
6
7
8
9
10

c = {}.__proto__[1] = 3;
(function() {
    function b(a) {
        return a
    }
    for each(let z in [{}]) {
        print(new b(z))
    }
})()