mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
25 lines
583 B
Zig
25 lines
583 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 (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
|
|
|
|
if (foo()) {
|
|
@panic("unexpected");
|
|
} else |err| switch (err) {
|
|
error.OutOfMemory => @panic("unexpected"),
|
|
error.FileNotFound => @panic("unexpected"),
|
|
error.NotDir => {},
|
|
}
|
|
}
|