v2 / vlib / v / checker / tests / par_expr_decl_assign_err.out
5 lines · 5 sloc · 183 bytes · 1dc5d36724a796d8bbfb8192633a89cf00975b5b
Raw
1vlib/v/checker/tests/par_expr_decl_assign_err.vv:2:2: error: parentheses are not supported on the left side of `:=`
2 1 | fn main() {
3 2 | (x) := 5
4 | ~~~
5 3 | }
6