v / vlib / sync / empty_struct_chan_init_test.v
8 lines · 7 sloc · 116 bytes · 6e4dc82f28e02613a42fca733a179e8b75673e9d
Raw
1struct User {
2}
3
4fn test_empty_struct_chan_init() {
5 user_ch := chan User{cap: 10}
6 println(user_ch)
7 assert true
8}
9