| 1 | vlib/v/checker/tests/time_duration_assign_to_int_err.vv:10:3: error: cannot assign to field `x`: expected `int`, not `time.Duration` |
| 2 | 8 | d := time.second |
| 3 | 9 | _ := Foo{ |
| 4 | 10 | x: d |
| 5 | | ~~~~ |
| 6 | 11 | } |
| 7 | 12 | } |
| 8 | vlib/v/checker/tests/time_duration_assign_to_int_err.vv:16:3: error: cannot assign to field `x`: expected `int`, not `time.Duration` |
| 9 | 14 | fn bad_struct_init_direct() { |
| 10 | 15 | _ := Foo{ |
| 11 | 16 | x: time.second |
| 12 | | ~~~~~~~~~~~~~~ |
| 13 | 17 | } |
| 14 | 18 | } |
| 15 |