solidity/test/libsolidity/syntaxTests/viewPureChecker/basefee_not_pure.sol
2022-04-01 23:41:18 -05:00

14 lines
542 B
Solidity

contract C {
function f() public pure {
assembly { pop(basefee()) }
}
function g() public pure returns (uint) {
return block.basefee;
}
}
// ====
// EVMVersion: >=london
// ----
// TypeError 2527: (67-76='basefee()'): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
// TypeError 2527: (147-160='block.basefee'): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".