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_keyword.out
2021-02-04 22:25:58 +01:00

8 lines
198 B
Plaintext

vlib/v/parser/tests/unexpected_keyword.vv:5:12: error: expecting method name
3 | }
4 |
5 | fn (s Abc) import(name string) {
| ~~~~~~
6 | println(name)
7 | }