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