mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
37 lines
983 B
Zig
37 lines
983 B
Zig
const expect = @import("std").testing.expect;
|
|
const builtin = @import("builtin");
|
|
|
|
var read_count: u64 = 0;
|
|
|
|
fn readOnce() anyerror!u64 {
|
|
read_count += 1;
|
|
return read_count;
|
|
}
|
|
|
|
const FormValue = union(enum) {
|
|
Address: u64,
|
|
Other: bool,
|
|
};
|
|
|
|
fn doThing(form_id: u64) anyerror!FormValue {
|
|
return switch (form_id) {
|
|
17 => FormValue{ .Address = try readOnce() },
|
|
else => error.InvalidDebugInfo,
|
|
};
|
|
}
|
|
|
|
test "switch prong returns error enum" {
|
|
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
|
|
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
|
|
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
|
|
|
|
switch (doThing(17) catch unreachable) {
|
|
FormValue.Address => |payload| {
|
|
try expect(payload == 1);
|
|
},
|
|
else => unreachable,
|
|
}
|
|
try expect(read_count == 1);
|
|
}
|