Lee Cannon
Lee Cannon
### Zig Version 0.10.0-dev.3362+e863292fe ### Steps to Reproduce ```zig const ZERO_SIZED = true; var might_be_zero_sized: MightBeZeroSized = .{}; pub fn main() void { might_be_zero_sized.aFunctionThatTakesAPointer(); } const MightBeZeroSized = struct {...
It seems like the problem matcher used when running the `Zig: Build Workspace` command is returning incorrect paths. The paths are incorrectly absolute paths, for example an error with the...
It would be nice if ziglang.org provided a direct link to the latest master, making [https://zigbin.io/master](https://zigbin.io/master) unnecessary.
It is valid to have parameter names in function types e.g. `a_field: fn(param: bool) void,` but zls considers `param` to be unused. This might be a duplicate of #519 but...
Seems like the labels for enums include every enum member after (but not including) the one in question. 
The second if's conditions are clearly wrong (both are always false), shouldn't `detected_target` be involved? https://github.com/MasterQ32/SDL.zig/blob/9bef3552c4a031193a79884107466ea6ce8a5f4f/Sdk.zig#L235-L236
Issue occurs with both 0.1.3 and master. It is running nested in an X11 session, even after segfaulting it leaves a `wlroots - X11-1` window open that cannot be closed...
With latest gyro built from source with fix from #181 using stage2, passing `-fstage1` works fine Release-Safe: ``` $ gyro publish thread 31213 panic: incorrect alignment [1] 31213 IOT instruction...
GitHub has started warning about node12 being deprecated: `Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: goto-bus-stop/setup-zig`
### Zig Version 0.10.0-dev.4476+0f0076666 ### Steps to Reproduce ## badcodegen.zig ```zig const std = @import("std"); export fn badCodeGen(f: f64) u64 { return @floatToInt(u64, f); } pub export fn _start() callconv(.Naked)...