mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
11 lines
122 B
V
11 lines
122 B
V
module sync
|
|
|
|
struct ChanStruct {
|
|
workers []chan bool
|
|
}
|
|
|
|
fn test_chan_mod_sync() {
|
|
_ := chan bool{cap: 1}
|
|
assert true
|
|
}
|