2020-12-09 19:47:50 +00:00
|
|
|
contract C {
|
|
|
|
function f() public returns (uint) {
|
|
|
|
return block.gaslimit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2020-11-21 20:05:39 +00:00
|
|
|
// compileToEwasm: also
|
2020-12-09 19:47:50 +00:00
|
|
|
// ----
|
|
|
|
// f() -> 20000000
|
|
|
|
// f() -> 20000000
|
|
|
|
// f() -> 20000000
|