mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
Some tests are now failing due to debug info changes, some tests now pass due to improved compiler functionality.
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 => {},
|
|
}
|
|
}
|