mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
8 lines
116 B
V
8 lines
116 B
V
struct User {
|
|
}
|
|
|
|
fn test_empty_struct_chan_init() {
|
|
user_ch := chan User{cap: 10}
|
|
println(user_ch)
|
|
assert true
|
|
}
|