solidity/test/libsolidity/syntaxTests/natspec/docstring_empty_description.sol
2019-11-01 14:54:47 -05:00

8 lines
201 B
Solidity

contract C {
/// @param id
function vote(uint id) public;
}
// ----
// DocstringParsingError: No description given for param id
// TypeError: (0-67): Contract "C" should be marked as abstract.