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