mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
609 B
Solidity
23 lines
609 B
Solidity
|
contract C {
|
||
|
function f() public view returns (uint256 ret) {
|
||
|
assembly {
|
||
|
let difficulty := sload(0)
|
||
|
ret := difficulty
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function g() public pure returns (uint256 ret) {
|
||
|
assembly {
|
||
|
function difficulty() -> r {
|
||
|
r := 1000
|
||
|
}
|
||
|
ret := difficulty()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >=paris
|
||
|
// ----
|
||
|
// DeclarationError 5017: (101-111): The identifier "difficulty" is reserved and can not be used.
|
||
|
// DeclarationError 5017: (255-323): The identifier "difficulty" is reserved and can not be used.
|