v2 / vlib / v / tests / multiple_paths_in_vmodules / main.vv
9 lines · 8 sloc · 129 bytes · 65503edb4e61e66819d93620b0238d8f8579d6cf
Raw
1import yyy
2import xxx
3import zzz
4
5fn main() {
6 all := [xxx.f(), yyy.f(), zzz.f()]
7 println(all)
8 assert all == ['x', 'y', 'z']
9}
10