kbkpbot
kbkpbot
### Describe the bug global string array can be modified in main func, but can't be modified via function call ### Expected Behavior ``` ['aa', 'bb'] ['1', 'bb'] ``` ###...
### Describe the feature Use datatype i64 instead of int as the array's len, offset and cap. ### Use Case Currently vlang use int as the array length, this will...
### Describe the bug when compile a simple net app, it will fail in prod mode ### Reproduction Steps test.v ```v module main import net fn main() { net.listen_tcp(.ip6, ':8081')...
Remove some TCC specific restrictions. `__has_include` work in the updated TCC? TCC now has a `stdatomic.h` as GCC/clang
As the v/thirdparty/tcc/README.md said, "This is a prebuild tcc (git://repo.or.cz/tinycc.git), cut at commit: 806b3f9 from 2021-03-17 which is the last good commit found by bisecting, that does not cause vlib/sync/channel_close_test.v...
and add some missing controls
test2.c ```c int test(int a) { if (a > 1) return 0; return 1; } ``` c2v produce extra error message "**No more children**" : ``` C to V translator...
### Describe the bug -autofree should not leak ### Reproduction Steps leak.v ```v module main struct MyLeak { a u32 } fn leak_test(leak &MyLeak) { println(leak) } fn main() {...
### Describe the bug convert v from c, and the result code can't compile ### Reproduction Steps test.v ```v module main @[export:'S_sfx'] const s_sfx = [0,1,2] fn main() { println(s_sfx[0])...
### Describe the bug v does not support Chinese character path name under Windows 10, it will fail when compile v program. ### Reproduction Steps create any v file, such...