vxx2 / vlib / v / checker / tests / time_duration_assign_to_int_err.out
14 lines · 14 sloc · 529 bytes · 50b936cd58723a86e121a5ec26561c438c4949eb
Raw
1vlib/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 | }
8vlib/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