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

7 lines
196 B
Plaintext

vlib/v/parser/tests/invalid_using_mut.vv:2:5: error: the `mut` keyword is invalid here
1 | fn main() {
2 | if mut true {
| ~~~
3 | println(true)
4 | }