vxx2 / vlib / v / checker / tests / mut_parms_struct_param_err.out
7 lines · 7 sloc · 287 bytes · f0abc452fa9ab3844bd443eaa49d80880e5058d0
Raw
1vlib/v/checker/tests/mut_parms_struct_param_err.vv:8:17: error: declaring a mutable parameter that accepts a struct with the `@[params]` attribute is not allowed
2 6 | }
3 7 |
4 8 | fn foo(mut opts Params) bool {
5 | ~~~~~~
6 9 | return opts.a
7 10 | }
8