v2 / vlib / v / checker / tests / result_chan_test_err.out
6 lines · 6 sloc · 204 bytes · 7c89d77d5b79d32c4a946d472a84822d056354ff
Raw
1vlib/v/checker/tests/result_chan_test_err.vv:2:12: error: cannot use chan with Result type
2 1 | fn main() {
3 2 | c := chan !string{}
4 | ^
5 3 | println(c.len)
6 4 | }
7