mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add semantic test for SELFBALANCE in inline assembly
This commit is contained in:
parent
fc2af72a3d
commit
cbb08ae3db
@ -0,0 +1,12 @@
|
|||||||
|
contract C {
|
||||||
|
function f() public payable returns (uint ret) {
|
||||||
|
assembly {
|
||||||
|
ret := selfbalance()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ====
|
||||||
|
// EVMVersion: >=istanbul
|
||||||
|
// compileViaYul: also
|
||||||
|
// ----
|
||||||
|
// f(), 254 ether -> 254
|
Loading…
Reference in New Issue
Block a user