solidity/test/libsolidity/natspecJSON/private_state_variable.sol

28 lines
405 B
Solidity

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