mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
187 B
Solidity
16 lines
187 B
Solidity
contract A {
|
|
uint256 constant x = 7;
|
|
}
|
|
|
|
|
|
contract B is A {
|
|
function f() public returns (uint256) {
|
|
return A.x;
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 7
|