mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
232 B
Solidity
12 lines
232 B
Solidity
|
contract D {
|
||
|
struct S { uint a; }
|
||
|
}
|
||
|
|
||
|
contract C is D {
|
||
|
/// @inheritdoc D.S
|
||
|
function f() internal {
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// DocstringParsingError 1430: (63-82): Documentation tag @inheritdoc reference "D.S" is not a contract.
|