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

8 lines
207 B
Plaintext

vlib/v/parser/tests/redeclaration_of_imported_fn.vv:3:4: error: cannot redefine imported function `input`
1 | import os { input }
2 |
3 | fn input() {}
| ~~~~~
4 |
5 | input()