summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug654536.js
blob: 5a3266ff6a6d40d72ea1467c465fa9b05d8b6e1f (plain)
1
2
3
4
5
6
function f() {
    var x = Object.prototype.hasOwnProperty.call(1);
    assertEq(x, false);
    isNaN(2);
}
f();