v2 / vlib / v / gen / c / testdata / global_initializer_windows.vv
11 lines · 9 sloc · 123 bytes · 1b812f6bdfe9d3d76f31bb0057f96157843f9bd6
Raw
1// vtest vflags: -enable-globals
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