zig
zig copied to clipboard
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
### Zig Version 0.11.0-dev.4059+17255bed4 ### Steps to Reproduce and Observed Behavior I uploaded a minimal example project that you can `git clone` to reproduce the issue: https://github.com/konsuko/zraylibtest Please note that...
### Zig Version 0.12.0-dev.1830+779b8e259 ### Steps to Reproduce and Observed Behavior The file: ```zig const std = @import ("std"); const e = enum (u9) { // From my understanding those...
### Zig Version 0.12.0-dev.654+599641357 ### Steps to Reproduce and Observed Behavior Compile example program with `zig build-obj shl_error.zig` `shl_error.zig`: ```zig comptime { _ = @shlExact(1, 1); } ``` Actual result:...
### Zig Version 0.11.0 ### Steps to Reproduce and Observed Behavior This is a follow-up to * https://github.com/ziglang/zig/issues/4841#issuecomment-608177171 * https://github.com/ziglang/zig/issues/17480#issuecomment-1816104899 First issue wants to simply opt out from `zig cc`...
Fixes #18356
### Zig Version 0.11.0 ### Steps to Reproduce and Observed Behavior Create and send an http request to a server which doesn't always send a content-length (this is technically permissible...
this fixes #2984 this adds a `is_autotranslated` flag to `std.zig.Ast` as well as `std.zig.Parser`. my solution is to create a keyword that only exists in the parser, which when seen...
> This issue did just give me an idea though: what if `@typeInfo` data included the doc comment? So I could e.g. do: > ```zig > fn getDef(comptime T: type,...
Fixes #18350 When it's not valid for ArrayList or BoundedArray to expose a Writer interface: - Keep the Writer declaration as a defined but empty type - Move the compileError...