solidity/test/libsolidity/syntaxTests/natspec/docstring_state_variable.sol
2021-04-20 17:38:29 +02:00

7 lines
108 B
Solidity

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