v2 / vlib / v / tests / concurrency / selector_shared_var_test.v
15 lines · 13 sloc · 133 bytes · ca6e3a38ceedf710a08f1bcff519205737761a72
Raw
1struct Foo {
2mut:
3 foo string
4}
5
6struct Bar {
7 Foo
8}
9
10fn test_main() {
11 shared bar := Bar{}
12 rlock bar {
13 assert bar.foo == ''
14 }
15}
16