mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
226 B
Solidity
13 lines
226 B
Solidity
|
contract C {
|
||
|
function f() public payable returns (uint ret) {
|
||
|
assembly {
|
||
|
ret := selfbalance()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >=istanbul
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// f(), 254 ether -> 254
|