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

6 lines
212 B
Plaintext

vlib/v/checker/tests/import_not_found_err.vv:1:1: builder error: cannot import module "notexist" (not found)
1 | import notexist
| ~~~~~~~~~~~~~~~
2 | fn main() {
3 | println(notexist.name)