solidity/test/libsolidity/syntaxTests/inlineAssembly/istanbul.sol

16 lines
251 B
Solidity
Raw Normal View History

2019-09-19 09:00:43 +00:00
contract C {
function f() pure external {
assembly {
pop(chainid())
}
}
function g() view external {
assembly {
pop(selfbalance())
}
}
}
// ====
// EVMVersion: >=istanbul
// ----