solidity/test/libsolidity/ASTJSON/enum_natspec.sol

11 lines
155 B
Solidity
Raw Normal View History

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