| 1 | vlib/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 |
| 5 | vlib/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 | | ~~~~~ |
| 9 | vlib/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 | |