Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
concurrency
/
shared_fixed_array_init_test.v
9
lines
·
8
sloc
·
88 bytes
·
b0b08bc01806f763a6606d7484182f7fc20c14ce
Raw
1
struct
Foo {
2
mut
:
3
bar shared [1024]bool
4
}
5
6
fn
test_main() {
7
_ := Foo{}
8
assert
true
9
}
10