2019-04-29 14:38:18 +00:00
|
|
|
contract C {
|
|
|
|
function f() public returns (uint x) {
|
|
|
|
x = 1;
|
|
|
|
for (uint a = 0; a < 10; a = a + 1) {
|
|
|
|
x = x + x;
|
2019-05-08 11:27:36 +00:00
|
|
|
break;
|
2019-04-29 14:38:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function g() public returns (uint x) {
|
|
|
|
x = 1;
|
2019-05-08 11:27:36 +00:00
|
|
|
uint a = 0;
|
|
|
|
while (a < 10) {
|
2019-04-29 14:38:18 +00:00
|
|
|
x = x + x;
|
|
|
|
break;
|
2019-05-08 11:27:36 +00:00
|
|
|
a = a + 1;
|
2019-04-29 14:38:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function h() public returns (uint x) {
|
|
|
|
x = 1;
|
2019-05-08 11:27:36 +00:00
|
|
|
do {
|
|
|
|
x = x + 1;
|
|
|
|
break;
|
|
|
|
} while (x < 3);
|
2019-04-29 14:38:18 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-08 11:27:36 +00:00
|
|
|
// ====
|
2020-11-24 23:25:42 +00:00
|
|
|
// compileViaYul: also
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-04-29 14:38:18 +00:00
|
|
|
// ----
|
2019-05-08 11:27:36 +00:00
|
|
|
// f() -> 2
|
2019-04-29 14:38:18 +00:00
|
|
|
// g() -> 2
|
2019-05-08 11:27:36 +00:00
|
|
|
// h() -> 2
|