mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
41 lines
720 B
Solidity
41 lines
720 B
Solidity
contract test {
|
|
/// @notice example of notice
|
|
/// @dev example of dev
|
|
/// @return returns state
|
|
uint public state;
|
|
}
|
|
|
|
// ----
|
|
// ----
|
|
// :test devdoc
|
|
// {
|
|
// "kind": "dev",
|
|
// "methods": {},
|
|
// "stateVariables":
|
|
// {
|
|
// "state":
|
|
// {
|
|
// "details": "example of dev",
|
|
// "return": "returns state",
|
|
// "returns":
|
|
// {
|
|
// "_0": "returns state"
|
|
// }
|
|
// }
|
|
// },
|
|
// "version": 1
|
|
// }
|
|
//
|
|
// :test userdoc
|
|
// {
|
|
// "kind": "user",
|
|
// "methods":
|
|
// {
|
|
// "state()":
|
|
// {
|
|
// "notice": "example of notice"
|
|
// }
|
|
// },
|
|
// "version": 1
|
|
// }
|