solidity/test/libsolidity/natspecJSON/docstring_private_state_variable.sol

28 lines
429 B
Solidity

contract C {
/// @notice example of notice
/// @dev example of dev
uint private state;
}
// ----
// ----
// :C devdoc
// {
// "kind": "dev",
// "methods": {},
// "stateVariables":
// {
// "state":
// {
// "details": "example of dev"
// }
// },
// "version": 1
// }
//
// :C userdoc
// {
// "kind": "user",
// "methods": {},
// "version": 1
// }