diff --git a/vlib/v/tests/concurrency/shared_fixed_array_init_test.v b/vlib/v/tests/concurrency/shared_fixed_array_init_test.v new file mode 100644 index 00000000000000..16230b34384803 --- /dev/null +++ b/vlib/v/tests/concurrency/shared_fixed_array_init_test.v @@ -0,0 +1,9 @@ +struct Foo { +mut: + bar shared [1024]bool +} + +fn test_main() { + _ := Foo{} + assert true +}