Dhritishman Sarmah
Dhritishman Sarmah
### Describe the bug - Setting default value of option type to `none` causes error. Anything else runs successfully. - Also it prints incorrectly ```v d := Data{} // see...
### Describe the bug `$compile_warn` running multiple times for generic functions. It runs expectedly for normal functions ### Expected Behavior warn once ### Current Behavior ``` ❯ v run .\warn.v...
### Describe the bug Error in return `none` from or block inside `match`. Similar if-else works. ### Expected Behavior run successfully ### Current Behavior ``` examples/check_encode.v:81:26: error: the default expression...
### Describe the bug incorrect formatting of `$compile_warn` ### Expected Behavior correct formatting ### Current Behavior ```v fn main() { .$compile_warn(WARN) } ``` ### Reproduction Steps ```v fn main() {...
### Describe the bug 1. ```v a := [?int(none), 1] println(a) ``` expected: `[Option(error: none), Option(1)]` current: `[Option(error: none), Option(error: none)]` 2. ```v _ := [?int(none), none] ``` expected: success...
### Describe the bug *See Reproduction for code* If I replace `struct MyData[T]` with `struct MyData[U]` in its definition, code works. Or If replace `U` with `T` in function `myfunc`...
The function ` fn (ctx &Context) draw_line_with_config(x f32, y f32, x2 f32, y2 f32, config PenConfig)` in module `gg` is very useful for drawing custom lines. Currently, there exists only...