vlib/v/checker/tests/modules/deprecated_module/main.v:2:1: notice: module `deprecated_module.www.ttt` will be deprecated after 2999-01-01, and will become an error after 2999-06-30; use xxx.yyy 1 | import bbb.ccc 2 | import www.ttt | ~~~~~~~~~~~~~~ 3 | import xxx.yyy 4 | vlib/v/checker/tests/modules/deprecated_module/main.v:12:11: error: undefined ident: `deprecated_module.www.ttt.non_existing` 10 | dump(ttt.f()) 11 | dump(yyy.f()) 12 | dump(ttt.non_existing) | ~~~~~~~~~~~~ 13 | } vlib/v/checker/tests/modules/deprecated_module/main.v:12:11: error: dump expression can not be void 10 | dump(ttt.f()) 11 | dump(yyy.f()) 12 | dump(ttt.non_existing) | ~~~~~~~~~~~~ 13 | }