solidity/test/libsolidity/semanticTests/empty_for_loop.sol

14 lines
223 B
Solidity
Raw Normal View History

2020-11-02 12:11:18 +00:00
contract test {
function f() public returns(uint ret) {
ret = 1;
for (;;) {
ret += 1;
if (ret >= 10) break;
}
}
}
// ====
// compileToEwasm: also
2020-11-02 12:11:18 +00:00
// ----
// f() -> 10