mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
268 B
Solidity
18 lines
268 B
Solidity
contract A {
|
|
uint public x = 0;
|
|
uint y = f();
|
|
function f() public returns (uint256) {
|
|
++x;
|
|
return 42;
|
|
}
|
|
}
|
|
contract B is A {
|
|
uint public z;
|
|
constructor() {
|
|
z = x;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// z() -> 1 |