| 1 | vlib/v/checker/tests/struct_option_field_assign_ptr_err.vv:10:3: error: cannot assign a pointer to option struct field |
| 2 | 8 | name := 'Bilbo' |
| 3 | 9 | a := Abc{ |
| 4 | 10 | age: &age |
| 5 | | ~~~~~~ |
| 6 | 11 | } |
| 7 | 12 | b := Abc{ |
| 8 | vlib/v/checker/tests/struct_option_field_assign_ptr_err.vv:13:3: error: cannot assign a pointer to option struct field |
| 9 | 11 | } |
| 10 | 12 | b := Abc{ |
| 11 | 13 | name: &name |
| 12 | | ~~~~~~~ |
| 13 | 14 | } |
| 14 | 15 | dump(a) |
| 15 |