mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
284 B
Plaintext
7 lines
284 B
Plaintext
vlib/v/checker/tests/asm_immutable_err.vv:9:9: error: `c` is immutable, declare it with `mut` to make it mutable
|
|
7 | add eax, b
|
|
8 | mov c, eax
|
|
9 | ; =r (c) // output
|
|
| ^
|
|
10 | ; r (a) // input
|
|
11 | r (b) |