v2 / vlib / v / checker / tests / modules / deprecated_module.out
18 lines · 18 sloc · 782 bytes · eeaaff218bbe695c655a6380963e2f82deadcb94
Raw
1vlib/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 |
7vlib/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 | }
13vlib/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