vxx2 / vlib / v / checker / tests / mut_receiver.vv
13 lines · 13 sloc · 157 bytes · 1b09954622a09eb2072883738b89331e0bf77424
Raw
1struct Foo{
2mut:
3 name string
4}
5fn (f mut Foo) info() {
6 f.name = 'foo'
7}
8fn (mut f &Foo) info2() {
9 f.name = 'foo'
10}
11fn main() {
12 println('hello, world')
13}
14