Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
empty_map_fmt_keep.vv
11
lines
·
10
sloc
·
90 bytes
·
c9a8d6448d68153d32deacf23708e9c22a5567ef
Raw
1
struct Foo {
2
bar map[int]int
3
}
4
5
fn main() {
6
foo := Foo{
7
bar: {
8
// comment
9
}
10
}
11
}
12