v2 / vlib / v / fmt / tests / enum_comments_keep.vv
17 lines · 15 sloc · 251 bytes · 5b900056f3000dac463584c7f8c6c899ac98c276
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