mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
29 lines
529 B
Solidity
29 lines
529 B
Solidity
|
contract C {
|
||
|
constructor() payable {}
|
||
|
|
||
|
function f() public returns (uint256 ret) {
|
||
|
assembly {
|
||
|
ret := balance(0)
|
||
|
}
|
||
|
}
|
||
|
function g() public returns (uint256 ret) {
|
||
|
assembly {
|
||
|
ret := balance(1)
|
||
|
}
|
||
|
}
|
||
|
function h() public returns (uint256 ret) {
|
||
|
assembly {
|
||
|
ret := balance(address())
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ====
|
||
|
// EVMVersion: >=constantinople
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// constructor(), 23 wei ->
|
||
|
// f() -> 0
|
||
|
// g() -> 1
|
||
|
// h() -> 23
|