solidity/test/libsolidity/semanticTests/modifiers/break_in_modifier.sol

23 lines
354 B
Solidity
Raw Normal View History

contract C {
uint256 public x;
modifier run() {
for (uint256 i = 0; i < 10; i++) {
_;
if (i == 1)
break;
}
}
function f() public run {
uint256 k = x;
uint256 t = k + 1;
x = t;
}
}
2020-11-30 17:59:49 +00:00
// ====
// compileViaYul: also
// ----
// x() -> 0
// f() ->
// x() -> 2