mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
313 B
Solidity
13 lines
313 B
Solidity
|
contract C {
|
||
|
function f() public {
|
||
|
assembly {
|
||
|
pop(difficulty())
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >=paris
|
||
|
// ----
|
||
|
// DeclarationError 4619: (74-84): Function "difficulty" not found.
|
||
|
// TypeError 3950: (74-86): Expected expression to evaluate to one value, but got 0 values instead.
|