mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
vlib/v/checker/tests/blank_modify.v:2:2: error: cannot modify blank `_` variable
|
|
1 | fn main() {
|
|
2 | _ += 1
|
|
| ^
|
|
3 | }
|