v2 / vlib / v / checker / tests / modules / indirect_import_unknown_module.out
7 lines · 7 sloc · 226 bytes · b341e6726c7d6bced18f783f85459c992c9fdd84
Raw
1vlib/v/checker/tests/modules/indirect_import_unknown_module/main.v:7:7: error: unknown module `m2`
2 5 | fn main() {
3 6 | // vfmt off
4 7 | m1.f(m2.Struct{})
5 | ~~
6 8 | // vfmt on
7 9 | }
8