bug659438.js (110B)
1 var o1 = {x: {}}; 2 function f() { 3 var o = o1; 4 for(var i=0; i<10; i++) { 5 o1 = o.x; 6 } 7 } 8 f();