summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testConstantBooleanExpr.js
blob: 8cc5f348222ae2e6c8d44b486b002277fc9c52be (plain)
1
2
3
4
5
6
function testConstantBooleanExpr()
{
    for (var j = 0; j < 3; ++j) { if(true <= true) { } }
    return "ok";
}
assertEq(testConstantBooleanExpr(), "ok");