vq / vlib / v / fmt / tests / enum_comments_keep.vv
17 lines · 15 sloc · 251 bytes
Raw
1module main
2
3// Top level comment
4enum EnumType {
5 // comment for the enum
6 abc
7 xyz // comment for the enum field
8}
9
10// Another top level comment
11enum PacketType {
12 // Regular data packet
13 data // abc def
14 // xyz
15 // another comment
16 abcd // jklmn
17}
18