mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
43 lines
613 B
Solidity
43 lines
613 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 userdoc
|
||
|
// {
|
||
|
// "methods":
|
||
|
// {
|
||
|
// "x()":
|
||
|
// {
|
||
|
// "notice": "Hello world"
|
||
|
// }
|
||
|
// }
|
||
|
// }
|
||
|
//
|
||
|
// :D userdoc
|
||
|
// {
|
||
|
// "methods":
|
||
|
// {
|
||
|
// "x()":
|
||
|
// {
|
||
|
// "notice": "Hello world"
|
||
|
// }
|
||
|
// }
|
||
|
// }
|