zig/test/cases/switch_prong_err_enum.zig

33 lines
652 B
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
var read_count: u64 = 0;
fn readOnce() error!u64 {
read_count += 1;
return read_count;
}
const FormValue = union(enum) {
Address: u64,
Other: bool,
2016-12-25 15:31:57 -08:00
};
fn doThing(form_id: u64) error!FormValue {
return switch (form_id) {
17 => FormValue {
.Address = try readOnce(),
},
else => error.InvalidDebugInfo,
};
}
2017-05-23 18:38:31 -07:00
test "switch prong returns error enum" {
switch (doThing(17) catch unreachable) {
FormValue.Address => |payload| {
assert(payload == 1);
},
else => unreachable,
}
assert(read_count == 1);
}