mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
249 B
Solidity
10 lines
249 B
Solidity
contract C {
|
|
function blockhash(uint256 blockNumber) public returns(bytes32) { bytes32 x; return x; }
|
|
function f() public returns(bytes32) { return blockhash(3); }
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 0
|