summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1546228.js
blob: 35814a32e92cec2cd1bd8ce617dd0f0040c0b045 (plain)
1
2
3
4
5
6
7
8
9
10
function Obj() {
    this.a = 1;
}
Obj.prototype = this;

function test() {
    return o.a;
}
var o = new Obj();
test();