v2 / vlib / v / parser / tests / struct_init_from_another_mod_err.vv
7 lines · 6 sloc · 123 bytes · d2fdbaf67e93d69072921680af4bfe9e91cc1def
Raw
1import rand
2import rand.config
3
4fn main() {
5 mut a := [0, 1, 2]
6 rand.shuffle(mut a, rand.config.ShuffleConfigStruct{})!
7}
8