solidity/test/libsolidity/semanticTests/inlineAssembly/basefee_berlin_function.sol

22 lines
422 B
Solidity
Raw Normal View History

contract C {
function f() public view returns (uint ret) {
assembly {
let basefee := sload(0)
ret := basefee
}
}
function g() public pure returns (uint ret) {
assembly {
function basefee() -> r {
r := 1000
}
ret := basefee()
}
}
}
// ====
// EVMVersion: <=berlin
// ----
// f() -> 0
// g() -> 1000