Files
solidity/test/libsolidity/syntaxTests/natspec/docstring_state_variable.sol
T

7 lines
108 B
Solidity

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