1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: fix := test

This commit is contained in:
Alexander Medvednikov 2020-09-09 17:50:14 +02:00
parent 5d484bf022
commit 818220de45
2 changed files with 967 additions and 14 deletions

View File

@ -1,13 +1,7 @@
vlib/v/checker/tests/assign_mut.vv:3:9: error: `mut` not allowed with `=` (use `:=` to declare a variable)
vlib/v/checker/tests/assign_mut.vv:3:11: error: expecting `:=` (e.g. `mut x :=`)
1 | fn main() {
2 | mut z := 1
3 | mut z = 1
| ^
| ^
4 | mut i := 2
5 | i, mut z = 2,3
vlib/v/checker/tests/assign_mut.vv:5:12: error: `mut` not allowed with `=` (use `:=` to declare a variable)
3 | mut z = 1
4 | mut i := 2
5 | i, mut z = 2,3
| ^
6 | }

File diff suppressed because it is too large Load Diff