Results 154 comments of Rohlem

> I've explained the several scenarios where this doesn't work in https://github.com/ziglang/zig/issues/20864#issuecomment-2269416003 already @mnemnion Your comment there doesn't reference my reply here, where I outline that the missing path prefix...

> This would impose a substantial and complex build step on any user of the library. `ohsnap.addTestAndRunInSameDirectory(...)` isn't much longer than `b.addTest(...)` followed by `b.addRunArtifact(...)`. If you want standard `zig...

I think the biggest issue with this proposal would be in generic code: `final x = T.x*2;` If `T.x` can refer to a variable for some `T`, we need to...

Can also be replicated with another `try` instead of `return`, and a third breaks compilation: ```zig fn g() error{E}!void {} inline fn f() error{E}![][1:0]u8 { try g(); //with 1 `try`...