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

8 lines
217 B
Solidity
Raw Normal View History

contract C {
/// @notice example of notice
/// @dev example of dev
uint private state;
}
// ----
2020-06-22 16:43:57 +00:00
// DocstringParsingError 6546: (17-74): Documentation tag @notice not valid for non-public state variables.