solidity/test/libsolidity/ASTJSON/assembly/function.sol
2023-05-11 10:56:55 -05:00

7 lines
121 B
Solidity

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