mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
302 B
Solidity
12 lines
302 B
Solidity
|
contract C {
|
||
|
function f() public returns (address payable) {
|
||
|
return block.coinbase;
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// f() -> 0x7878787878787878787878787878787878787878
|
||
|
// f() -> 0x7878787878787878787878787878787878787878
|
||
|
// f() -> 0x7878787878787878787878787878787878787878
|