solidity/test/libsolidity/ASTJSON/struct_natspec.sol
2023-04-18 13:10:21 +02:00

12 lines
192 B
Solidity

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