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

8 lines
201 B
Solidity
Raw Normal View History

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