solidity/test/libsolidity/syntaxTests/natspec/docstring_enum.sol

12 lines
201 B
Solidity
Raw Normal View History

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