1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/select_bad_key_4.out

8 lines
253 B
Plaintext

vlib/v/parser/tests/select_bad_key_4.vv:7:8: error: select key: `<-` operator expected
5 | println(b)
6 | }
7 | c := -a {
| ^
8 | println("shouldn't get here")
9 | }