summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug639128.js
blob: fadd559aae86e13b7e71231997d5ae8a4612d247 (plain)
1
2
3
4
5
6
7
8
9
10
function f(o) { 
    Object.seal(o); 
}
gc();
if(2 != 2) {
    g = new f(g);
}
with({}) {
    f({});
}