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

7 lines
109 B
Solidity
Raw Normal View History

contract C {
/// @notice example of notice
/// @dev example of dev
uint private state;
}
// ----