v/vlib/v/fmt/tests/empty_map_fmt_keep.vv

12 lines
90 B
V

struct Foo {
bar map[int]int
}
fn main() {
foo := Foo{
bar: {
// comment
}
}
}