solidity/test/libsolidity/syntaxTests/natspec/invalid/docstring_inheritdoc.sol

8 lines
185 B
Solidity
Raw Normal View History

2020-06-29 12:30:09 +00:00
contract C {
/// @inheritdoc X
function f() internal {
}
}
// ----
// DocstringParsingError 9397: (17-34): Documentation tag @inheritdoc references inexistent contract "X".