mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
9 lines
116 B
V
9 lines
116 B
V
struct User {
|
|
}
|
|
|
|
fn test_empty_struct_chan_init() {
|
|
user_ch := chan User{cap: 10}
|
|
println(user_ch)
|
|
assert true
|
|
}
|