solidity/test/libsolidity/syntaxTests/natspec/docstring_state_variable.sol
2020-05-19 11:01:52 -05:00

6 lines
100 B
Solidity

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