solidity/test/libsolidity/semanticTests/builtinFunctions/blockhash_shadow_resolution.sol

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); }
}
// ====
// compileViaYul: also
// compileToEwasm: also
// ----
// f() -> 0