v2 / vlib / v / checker / tests / comptime_call_method_mut_pointer_err.out
7 lines · 7 sloc · 357 bytes · 5f4d1047ead7989df521daca23a6907cf8135a5c
Raw
1vlib/v/checker/tests/comptime_call_method_mut_pointer_err.vv:17:20: error: cannot use `&Context` as `&&Context` in argument 1 to `App.index`
2 15 | $for method in App.methods {
3 16 | if method.name == 'index' {
4 17 | app.$method(mut user_context)
5 | ~~~~~~~~~~~~
6 18 | }
7 19 | }
8