1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/fmt/tests/enum_comments_keep.vv

18 lines
251 B
V

module main
// Top level comment
enum EnumType {
// comment for the enum
abc
xyz // comment for the enum field
}
// Another top level comment
enum PacketType {
// Regular data packet
data // abc def
// xyz
// another comment
abcd // jklmn
}