solidity/test/libsolidity/ASTJSON/assembly/function.sol

8 lines
122 B
Solidity
Raw Normal View History

2019-10-15 10:38:12 +00:00
contract C {
function h() view public {
assembly { function g() { pop(blockhash(20)) } g() }
}
}
// ----