zig/test/cases/switch_prong_err_enum.zig
Jimmi Holst Christensen 8139c5a516
New Zig formal grammar (#1685)
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
2018-11-13 05:08:37 -08:00

31 lines
636 B
Zig

const assert = @import("std").debug.assert;
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" {
switch (doThing(17) catch unreachable) {
FormValue.Address => |payload| {
assert(payload == 1);
},
else => unreachable,
}
assert(read_count == 1);
}