1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/checker/tests/blank_modify.out
2020-06-08 00:47:04 +02:00

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 | }