summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug645629.js
blob: c92d2c7bf5439a3d9fd882f5ebaeb2713f0884aa (plain)
1
2
3
4
5
6
7
8
/* Don't assert. */
o1 = {};
o1 = 2;
function f(o) {
    o.hasOwnProperty("x");
}
new f(o1);
f(o1);