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