mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
44 lines
626 B
Solidity
44 lines
626 B
Solidity
|
contract B {
|
||
|
function x() virtual external returns (uint) {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
contract C {
|
||
|
/// @notice Hello world
|
||
|
/// @dev test
|
||
|
function x() virtual external returns (uint) {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
contract D is C, B {
|
||
|
/// @inheritdoc C
|
||
|
uint public override(C, B) x;
|
||
|
}
|
||
|
|
||
|
// ----
|
||
|
// ----
|
||
|
// :C devdoc
|
||
|
// {
|
||
|
// "methods":
|
||
|
// {
|
||
|
// "x()":
|
||
|
// {
|
||
|
// "details": "test"
|
||
|
// }
|
||
|
// }
|
||
|
// }
|
||
|
//
|
||
|
// :D devdoc
|
||
|
// {
|
||
|
// "methods": {},
|
||
|
// "stateVariables":
|
||
|
// {
|
||
|
// "x":
|
||
|
// {
|
||
|
// "details": "test"
|
||
|
// }
|
||
|
// }
|
||
|
// }
|