Jose Mendoza
Jose Mendoza
@felipensp That parser error is caused by using the keyword `implements` as a variable name. The bug reported in the issue is still occurring. ```c ================== C compilation error (from...
The bug occurs when using `if` chained with unwrapping of result value (the same goes for option value). Here's a small reproduction: ```v fn res() !int { return 0 }...
Since PR #25508 fixes the same bug this PR attempted to fix, I don't think it needs to be open anymore. @TheAhmir Thanks for this PR 🙇🏻.
Error for actual V (0.4.12): ```sh $ v run x.v x.v:21:6: warning: unused variable: `node1` 19 | } 20 | 21 | mut node1 := Node[int]{ | ~~~~~ 22 |...
```v $ v run x.v x.v:3:8: warning: module 'time' is imported but never used. Use `import time as _`, to silence this warning, or just remove the unused import line...