v2 / vlib / v / checker / tests / blank_ident_select_branch_send_err.out
7 lines · 7 sloc · 307 bytes · 5bcc04e66a3f2697adc4da3e7d792e4ab6ea5f2c
Raw
1vlib/v/checker/tests/blank_ident_select_branch_send_err.vv:13:4: error: cannot send on `_`, use `_ := <- quit` instead
2 11 | x, y = y, x + y
3 12 | }
4 13 | _ = <-quit {
5 | ^
6 14 | println('quit')
7 15 | return
8