vxx2 / vlib / v / checker / tests / result_chan_test_err.vv
4 lines · 4 sloc · 50 bytes · 7c89d77d5b79d32c4a946d472a84822d056354ff
Raw
1fn main() {
2 c := chan !string{}
3 println(c.len)
4}