solidity/test/libsolidity/semanticTests/asmForLoop/for_loop_break.sol

16 lines
289 B
Solidity
Raw Normal View History

contract C {
function f() public returns (uint i) {
assembly {
for {} lt(i, 10) { i := add(i, 1) }
{
if eq(i, 6) { break }
i := add(i, 1)
}
}
}
}
2019-05-23 14:38:11 +00:00
// ====
// compileViaYul: also
// ----
// f() -> 6