solidity/test/libsolidity/ASTJSON/assembly/function.sol
2019-11-13 12:13:22 +01:00

8 lines
122 B
Solidity

contract C {
function h() view public {
assembly { function g() { pop(blockhash(20)) } g() }
}
}
// ----