Revert "checker: fix := test"

This reverts commit 818220de45.
pull/6341/head
Alexander Medvednikov 2020-09-09 17:55:48 +02:00
parent 818220de45
commit 3956ea4665
2 changed files with 14 additions and 967 deletions

View File

@ -1,7 +1,13 @@
vlib/v/checker/tests/assign_mut.vv:3:11: error: expecting `:=` (e.g. `mut x :=`)
vlib/v/checker/tests/assign_mut.vv:3:9: error: `mut` not allowed with `=` (use `:=` to declare a variable)
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