v/vlib/v/tests/go_wait_3_test.v
2022-11-05 10:46:40 +03:00

22 lines
256 B
V

struct Test {
sub SubTest
}
struct SubTest {
test string
}
fn test_method_go_wait() {
a := Test{
sub: SubTest{
test: 'hi'
}
}
thread := spawn a.sub.get()
r := thread.wait()
assert r == 'hi'
}
fn (t SubTest) get() string {
return t.test
}