v2 / vlib / v / parser / tests / struct_init_from_another_mod_err.out
6 lines · 6 sloc · 295 bytes · d2fdbaf67e93d69072921680af4bfe9e91cc1def
Raw
1vlib/v/parser/tests/struct_init_from_another_mod_err.vv:6:27: error: unknown module `rand.config`; did you mean `config`?
2 4 | fn main() {
3 5 | mut a := [0, 1, 2]
4 6 | rand.shuffle(mut a, rand.config.ShuffleConfigStruct{})!
5 | ~~~~~~
6 7 | }
7