mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
250 B
Solidity
14 lines
250 B
Solidity
|
contract test {
|
||
|
constructor() public payable {}
|
||
|
|
||
|
function getBalance() public returns (uint256 balance) {
|
||
|
return address(this).balance;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// constructor(), 23 wei ->
|
||
|
// getBalance() -> 23
|