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

8 lines
192 B
Solidity

contract C {
/// @param
function vote(uint id) public;
}
// ----
// DocstringParsingError: End of tag @param not found
// TypeError: (0-64): Contract "C" should be marked as abstract.