solidity/test/libsolidity/natspecJSON/docstring_enum.sol
2023-09-11 18:06:42 +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
}
}
// ----