solidity/test/libsolidity/ASTJSON/struct_natspec.sol

12 lines
192 B
Solidity
Raw Permalink Normal View History

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