solidity/test/libsolidity/syntaxTests/natspec/docstring_struct.sol
2023-04-18 13:10:21 +02:00

13 lines
242 B
Solidity

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;
}
}
// ----