Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
veb_context_param_mutability.out
7
lines
·
7
sloc
·
336 bytes
·
df8cb3e94c63c266d6388b57f7a0dcea9f087f42
Raw
1
vlib/v/checker/tests/veb_context_param_mutability.vv:11:25: error: veb app method `index` must declare context parameter `ctx` as mutable, e.g. `mut ctx Context`
2
9 | pub struct App {}
3
10 |
4
11 | pub fn (app &App) index(ctx Context) veb.Result {
5
| ~~~
6
12 | return veb.no_result()
7
13 | }
8