v2 / vlib / v / fmt / tests / enum_attrs_comments_keep.vv
11 lines · 10 sloc · 165 bytes · 79ee4ae0461480a383122608ecdeb67932f05bc8
Raw
1enum Color {
2 red @[RED] // first attribute
3 blue @[BLUE] // second attribute
4}
5
6fn main() {
7 $for e in Color.values {
8 println(e.name)
9 println(e.attrs)
10 }
11}
12