mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
226 B
Solidity
20 lines
226 B
Solidity
|
contract A
|
||
|
{
|
||
|
function test() external virtual returns (uint256)
|
||
|
{
|
||
|
return 5;
|
||
|
}
|
||
|
}
|
||
|
contract X is A
|
||
|
{
|
||
|
uint256 public override test;
|
||
|
|
||
|
function set() public { test = 2; }
|
||
|
}
|
||
|
|
||
|
|
||
|
// ----
|
||
|
// test() -> 0
|
||
|
// set() ->
|
||
|
// test() -> 2
|