solidity/test/libsolidity/ASTJSON/enum_natspec.sol
2023-04-05 14:58:32 +02:00

11 lines
155 B
Solidity

/// @title example of title
/// @author example of author
/// @notice example of notice
/// @dev example of dev
enum Color {
Red,
Green
}
// ----