v2 / vlib / v / gen / c / testdata / global_initializer_nix.vv
11 lines · 9 sloc · 139 bytes · a85071878ef774e711bc951def37e19e00755d7a
Raw
1// vtest vflags: -enable-globals -no-skip-unused
2
3struct Foo {
4 foo int
5 bar struct {
6 a int
7 b f64
8 }
9}
10
11__global g_test_foo = [3]Foo{}
12