v2 / vlib / v / fmt / tests / empty_map_fmt_keep.vv
11 lines · 10 sloc · 90 bytes · c9a8d6448d68153d32deacf23708e9c22a5567ef
Raw
1struct Foo {
2 bar map[int]int
3}
4
5fn main() {
6 foo := Foo{
7 bar: {
8 // comment
9 }
10 }
11}
12