v2 / vlib / v / slow_tests / inout / thread_uninitialized_err.vv
10 lines · 9 sloc · 170 bytes · 128195741e6dfb9ddb5aa80bb7d5e938901edf6e
Raw
1struct Client {
2mut:
3 network_thread thread
4}
5
6fn main() {
7 mut client := &Client{}
8 println('================ V panic ================')
9 client.network_thread.wait()
10}
11