solidity/test/libsolidity/syntaxTests/natspec/docstring_enum.sol
2023-04-05 14:58:32 +02:00

12 lines
201 B
Solidity

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