v2 / vlib / v / checker / tests / cannot_assign_array.out
6 lines · 6 sloc · 303 bytes · 03a0534483abc0b8d2b8ed8119ad604a55ec9561
Raw
1vlib/v/checker/tests/cannot_assign_array.vv:9:11: error: cannot assign to `ctx.vb`: expected `string`, not `[8]f64`
2 7 | mut ctx := Context{}
3 8 | x := 2.32
4 9 | ctx.vb = [1.1, x, 3.3, 4.4, 5.0, 6.0, 7.0, 8.9]!
5 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 10 | }
7