solidity/test/libsolidity/semanticTests/state/block_gaslimit.sol

12 lines
189 B
Solidity
Raw Normal View History

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