solidity/test/libsolidity/syntaxTests/natspec/docstring_struct.sol

13 lines
242 B
Solidity
Raw Normal View History

contract C {
/// @title example of title
/// @author example of author
/// @notice example of notice
/// @dev example of dev
struct Example {
string text;
bool valid;
uint256 value;
}
}
// ----