mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
403 B
Solidity
23 lines
403 B
Solidity
contract C {
|
|
uint256 v;
|
|
|
|
function f() public returns (bool) {
|
|
uint256 startGas = gasleft();
|
|
v++;
|
|
assert(startGas > gasleft());
|
|
return true;
|
|
}
|
|
|
|
function g() public returns (bool) {
|
|
uint256 startGas = gasleft();
|
|
assert(startGas > gasleft());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> true
|
|
// g() -> true
|