v2 / vlib / v / checker / tests / veb_context_param_mutability.vv
13 lines · 9 sloc · 157 bytes · df8cb3e94c63c266d6388b57f7a0dcea9f087f42
Raw
1module main
2
3import veb
4
5pub struct Context {
6 veb.Context
7}
8
9pub struct App {}
10
11pub fn (app &App) index(ctx Context) veb.Result {
12 return veb.no_result()
13}
14