Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jit-test / tests / basic / testConstantBooleanExpr.js
1 function testConstantBooleanExpr()
2 {
3     for (var j = 0; j < 3; ++j) { if(true <= true) { } }
4     return "ok";
5 }
6 assertEq(testConstantBooleanExpr(), "ok");