solidity/test/libsolidity/semanticTests/builtinFunctions/blockhash_shadow_resolution.sol
2019-07-22 16:31:46 +02:00

9 lines
225 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
// ----
// f() -> 0