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

9 lines
130 B
Solidity
Raw Normal View History

2020-10-02 10:37:13 +00:00
contract C {
2020-12-09 15:00:02 +00:00
function f() public view {
2020-10-02 10:37:13 +00:00
assembly { pop(chainid()) }
}
}
// ====
// EVMVersion: >=istanbul
// ----