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

7 lines
194 B
Plaintext

vlib/v/parser/tests/unexpected_name_err.vv:2:2: error: unexpected name `asfasfasfsfa`
1 | fn main() {
2 | asfasfasfsfa
| ~~~~~~~~~~~~
3 | println('text')
4 | }