v/vlib/v/checker/tests/pass_mut_lit.vv

11 lines
112 B
V

struct Box {
mut:
value int
}
fn modify(mut box Box, value int) {
box.value = value
}
modify(mut Box{}, 10)