mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
- implements `airSlice`, `airBitAnd`, `airBitOr`, `airShr`. - got a basic design going for the `airErrorName` but for some reason it simply returns empty bytes. will investigate further. - only generating `.got.zig` entries when not compiling an object or shared library - reduced the total amount of ops a mnemonic can have to 3, simplifying the logic
25 lines
509 B
Zig
25 lines
509 B
Zig
const builtin = @import("builtin");
|
|
const A = error{
|
|
FileNotFound,
|
|
NotDir,
|
|
};
|
|
const B = error{OutOfMemory};
|
|
|
|
const C = A || B;
|
|
|
|
fn foo() C!void {
|
|
return error.NotDir;
|
|
}
|
|
|
|
test "merge error sets" {
|
|
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
|
|
|
|
if (foo()) {
|
|
@panic("unexpected");
|
|
} else |err| switch (err) {
|
|
error.OutOfMemory => @panic("unexpected"),
|
|
error.FileNotFound => @panic("unexpected"),
|
|
error.NotDir => {},
|
|
}
|
|
}
|