2019-11-14 11:44:33 +00:00
|
|
|
contract C {
|
|
|
|
function f() pure external returns (uint id) {
|
|
|
|
assembly {
|
|
|
|
id := chainid()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function g() view external returns (uint sb) {
|
|
|
|
assembly {
|
|
|
|
sb := selfbalance()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// EVMVersion: =petersburg
|
|
|
|
// ----
|
2019-12-05 08:12:05 +00:00
|
|
|
// TypeError: (101-108): The "chainid" instruction is only available for Istanbul-compatible VMs (you are currently compiling for "petersburg").
|
2019-11-19 11:10:07 +00:00
|
|
|
// DeclarationError: (95-110): Variable count does not match number of values (1 vs. 0)
|
2019-12-05 08:12:05 +00:00
|
|
|
// TypeError: (215-226): The "selfbalance" instruction is only available for Istanbul-compatible VMs (you are currently compiling for "petersburg").
|
2019-11-19 11:10:07 +00:00
|
|
|
// DeclarationError: (209-228): Variable count does not match number of values (1 vs. 0)
|