v2 / vlib / v / checker / tests / unused_import_err.out
12 lines · 12 sloc · 698 bytes · e3d328a92b0f592bb2c9d46ab5ae77a69ea03105
Raw
1vlib/v/checker/tests/unused_import_err.vv:1:8: warning: module 'te (term)' is imported but never used. Use `import te (term) as _`, to silence this warning, or just remove the unused import line
2 1 | import term as te
3 | ~~~~
4 2 | import te.ui
5vlib/v/checker/tests/unused_import_err.vv:2:8: warning: module 'ui (te.ui)' is imported but never used. Use `import ui (te.ui) as _`, to silence this warning, or just remove the unused import line
6 1 | import term as te
7 2 | import te.ui
8 | ~~~~~
9vlib/v/checker/tests/unused_import_err.vv:2:1: builder error: cannot import module "te.ui" (not found)
10 1 | import term as te
11 2 | import te.ui
12 | ~~~~~~~~~~~~
13