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

checker: rename test assing -> assign (#16446)

This commit is contained in:
Larpon 2022-11-16 13:46:36 +01:00 committed by GitHub
parent 9bb1867be0
commit b60132d2ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
vlib/v/checker/tests/assing_none.vv:2:9: error: cannot assign a `none` value to a variable
vlib/v/checker/tests/assign_none.vv:2:9: error: cannot assign a `none` value to a variable
1 | fn main() {
2 | val := none
| ~~~~