summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug604427.js
blob: 1e37df86947630167728b52d37a37e5c9c89ca21 (plain)
1
2
3
4
5
6

function testInt(x) {
    var a = x|0;
    return (a !== a);
}
assertEq(testInt(10), false);