solidity/test/libsolidity/semanticTests/inlineAssembly/chainid.sol
2022-05-19 20:23:28 +02:00

12 lines
176 B
Solidity

contract C {
function f() public returns (uint id) {
assembly {
id := chainid()
}
}
}
// ====
// EVMVersion: >=istanbul
// ----
// f() -> 1