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

12 lines
212 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()) }
}
2020-09-22 17:12:01 +00:00
function g() public view returns (uint) {
return block.chainid;
}
2020-10-02 10:37:13 +00:00
}
// ====
// EVMVersion: >=istanbul
// ----