blob: f09e2fb7d36cc21b7fcca9b34f15d9530369db11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
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);
}
|