v2 / vlib / v / checker / tests / pass_mut_lit.out
5 lines · 5 sloc · 225 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/pass_mut_lit.vv:10:12: error: cannot pass a struct initialization as `mut`, you may want to use a variable `mut var := Box{....}`
2 8 | }
3 9 |
4 10 | modify(mut Box{}, 10)
5 | ~~~~~
6