solidity/test/libsolidity/syntaxTests/natspec/docstring_private_state_variable.sol
2020-05-19 11:01:52 -05:00

8 lines
253 B
Solidity

contract C {
/// @notice example of notice
/// @dev example of dev
uint private state;
}
// ----
// Warning: (17-74): Documentation tag on non-public state variables will be disallowed in 0.7.0. You will need to use the @dev tag explicitly.