2020-12-09 19:47:50 +00:00
|
|
|
contract C {
|
|
|
|
function f() public returns (bool) {
|
|
|
|
return gasleft() > 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
2020-11-21 20:05:39 +00:00
|
|
|
// compileToEwasm: also
|
2020-12-09 19:47:50 +00:00
|
|
|
// ----
|
|
|
|
// f() -> true
|
|
|
|
// f() -> true
|
|
|
|
// f() -> true
|