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