xdBronch

Results 33 issues of xdBronch

currently the error from code like this ```zig print("{}\n\"\x00", .{ 0, 0 }); ``` yields this error ``` zig/lib/std/fmt.zig:202:18: error: unused argument in '{} " 1 => @compileError("unused argument in...

### Zig Version 0.12.0-dev.2497+3c385340a ### Zig Language Server Version 0.12.0-dev.365+a8a83b6 ### Client / Code Editor / Extensions _No response_ ### Steps to Reproduce and Observed Behavior ```zig test { const...

bug

### Zig Version 0.12.0-dev.1856+94c63f31f ### Zig Language Server Version 0.12.0-dev.336+5c0bebe ### Client / Code Editor / Extensions _No response_ ### Steps to Reproduce and Observed Behavior ```zig const std =...

bug

related to #1621 and #1623 i think it should be configurable which autofixes are applied rather than simply enabling and disabling the entire feature. i assume it was designed the...

feature

### Zig Version 0.12.0-dev.1769+bf5ab5451 ### Zig Language Server Version 0.12.0-dev.280+b328500 ### Steps to Reproduce ```zig const Vec = @Vector(4, u8); ``` request hover ### Expected Behavior `Vec` should be resolved...

enhancement

```zig fn foo(_: u32, _: u32) void {} foo(0); // expected 2 arguments, found 1 ``` as far as i can tell this should be doable without any kind of...

enhancement

### Zig Version 0.12.0-dev.1591+3fc6a2f11 ### Zig Language Server Version 0.12.0-dev.228+aa9fc0c ### Steps to Reproduce ```zig fn foo(comptime T: type, in: union(enum) { a: T, b: T }) void { switch...

bug

### Zig Version 0.12.0-dev.3419+a2651cbc8 ### Steps to Reproduce and Observed Behavior `zig test -femit-docs any_file.zig` serve the docs with e.g. `python -m http.server` instead of the users code a file...

bug
autodoc

### Zig Version 0.12.0-dev.3419+a2651cbc8 ### Steps to Reproduce and Observed Behavior ```zig test { _ = @as([1]u32, @bitCast([_]comptime_int{0})); } ``` this segfaults the compiler, it seems like any comptime only...

bug
frontend