solidity/test/libsolidity/syntaxTests/viewPureChecker/assembly_constantinople.sol

9 lines
141 B
Solidity
Raw Normal View History

2020-10-02 10:37:13 +00:00
contract C {
function f() public view {
assembly { pop(extcodehash(0)) }
}
}
// ====
// EVMVersion: >=constantinople
// ----