Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
enum_comments_keep.vv
17
lines
·
15
sloc
·
251 bytes
·
5b900056f3000dac463584c7f8c6c899ac98c276
Raw
1
module main
2
3
// Top level comment
4
enum EnumType {
5
// comment for the enum
6
abc
7
xyz // comment for the enum field
8
}
9
10
// Another top level comment
11
enum PacketType {
12
// Regular data packet
13
data // abc def
14
// xyz
15
// another comment
16
abcd // jklmn
17
}
18