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

7 lines
179 B
Solidity
Raw Normal View History

contract C {
/// @author author
function iHaveAuthor() public pure {}
}
// ----
2020-07-21 09:39:25 +00:00
// DocstringParsingError 6546: (17-35): Documentation tag @author not valid for functions.