solidity/test/libsolidity/syntaxTests/natspec/docstring_too_many_return_tags.sol

9 lines
326 B
Solidity
Raw Normal View History

abstract contract C {
/// @param id Some identifier
/// @return value Some value
/// @return value2 Some value 2
function vote(uint id) public virtual returns (uint value);
}
// ----
// DocstringParsingError 2604: (26-121): Documentation tag "@return value2 Some value 2" exceeds the number of return parameters.