solidity/test/libsolidity/semanticTests/inlineAssembly/basefee_berlin_function.sol
2022-05-19 20:23:28 +02:00

22 lines
422 B
Solidity

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