v2 / vlib / v / tests / concurrency / shared_fixed_array_init_test.v
9 lines · 8 sloc · 88 bytes · b0b08bc01806f763a6606d7484182f7fc20c14ce
Raw
1struct Foo {
2mut:
3 bar shared [1024]bool
4}
5
6fn test_main() {
7 _ := Foo{}
8 assert true
9}
10