mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
f9d6abf69b
Move some of them out of SolidityEndToEndTests. Additionally this ensures the deterministic values of the testing infrastructure.
12 lines
189 B
Solidity
12 lines
189 B
Solidity
contract C {
|
|
function f() public returns (uint) {
|
|
return block.gaslimit;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 20000000
|
|
// f() -> 20000000
|
|
// f() -> 20000000
|