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);