bug942550.js (106B)
1 function pow(x,y) { 2 return Math.pow(x,y); 3 } 4 var x = pow(3, -.5); 5 var y = pow(3, -.5); 6 assertEq(x, y);