mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge remote-tracking branch 'origin/develop' into merge_develop_060
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
contract C {
|
||||
function f() public returns (uint id) {
|
||||
assembly {
|
||||
id := chainid()
|
||||
}
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// compileViaYul: also
|
||||
// EVMVersion: >=istanbul
|
||||
// ----
|
||||
// f() -> 1
|
||||
@@ -0,0 +1,12 @@
|
||||
contract C {
|
||||
function f() public payable returns (uint ret) {
|
||||
assembly {
|
||||
ret := selfbalance()
|
||||
}
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// EVMVersion: >=istanbul
|
||||
// compileViaYul: also
|
||||
// ----
|
||||
// f(), 254 ether -> 254
|
||||
Reference in New Issue
Block a user