| 1 | 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 |
| 2 | 1 | import bbb.ccc |
| 3 | 2 | import www.ttt |
| 4 | | ~~~~~~~~~~~~~~ |
| 5 | 3 | import xxx.yyy |
| 6 | 4 | |
| 7 | vlib/v/checker/tests/modules/deprecated_module/main.v:12:11: error: undefined ident: `deprecated_module.www.ttt.non_existing` |
| 8 | 10 | dump(ttt.f()) |
| 9 | 11 | dump(yyy.f()) |
| 10 | 12 | dump(ttt.non_existing) |
| 11 | | ~~~~~~~~~~~~ |
| 12 | 13 | } |
| 13 | vlib/v/checker/tests/modules/deprecated_module/main.v:12:11: error: dump expression can not be void |
| 14 | 10 | dump(ttt.f()) |
| 15 | 11 | dump(yyy.f()) |
| 16 | 12 | dump(ttt.non_existing) |
| 17 | | ~~~~~~~~~~~~ |
| 18 | 13 | } |
| 19 | |