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