v2 / vlib / v / tests / structs / anon_struct_local_init_test.v
12 lines · 12 sloc · 198 bytes · 006d3ab74aededae71901a467a4f5e00c82296b7
Raw
1fn test_anon_struct_as_local_variable() {
2 mut s := struct {
3 foo string
4 bar int
5 }{}
6 assert s.foo == ''
7 assert s.bar == 0
8 s.foo = 'foo'
9 s.bar = 1
10 assert s.foo == 'foo'
11 assert s.bar == 1
12}
13