mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
277 B
Solidity
11 lines
277 B
Solidity
contract D {
|
|
}
|
|
|
|
contract C is D {
|
|
/// @inheritdoc D
|
|
function f() internal {
|
|
}
|
|
}
|
|
// ----
|
|
// DocstringParsingError 4682: (38-55): Documentation tag @inheritdoc references contract "D", but the contract does not contain a function that is overridden by this function.
|