solidity/test/libsolidity/semanticTests/state/block_gaslimit.sol
2021-01-19 13:04:45 -05:00

13 lines
213 B
Solidity

contract C {
function f() public returns (uint) {
return block.gaslimit;
}
}
// ====
// compileViaYul: also
// compileToEwasm: also
// ----
// f() -> 20000000
// f() -> 20000000
// f() -> 20000000