v2 / vlib / v / checker / tests / modules / deprecated_module / main.v
13 lines · 12 sloc · 248 bytes · bb42e1ce7378577ee2f988894f5cd9ebe797ed7f
Raw
1import bbb.ccc
2import www.ttt
3import xxx.yyy
4
5// Note: www.ttt has been deprecated.
6// => compiling this should produce an error,
7// showing the deprecation message
8fn main() {
9 dump(ccc.f())
10 dump(ttt.f())
11 dump(yyy.f())
12 dump(ttt.non_existing)
13}
14