zig/test/cases/switch_prong_err_enum.zig

34 lines
584 B
Zig
Raw Normal View History

var read_count: u64 = 0;
fn readOnce() -> %u64 {
read_count += 1;
return read_count;
}
error InvalidDebugInfo;
2016-12-25 23:31:57 +00:00
const FormValue = enum {
Address: u64,
Other: bool,
2016-12-25 23:31:57 +00:00
};
fn doThing(form_id: u64) -> %FormValue {
return switch (form_id) {
17 => FormValue.Address { %return readOnce() },
else => error.InvalidDebugInfo,
}
}
fn switchProngReturnsErrorEnum() {
2016-12-25 23:31:57 +00:00
@setFnTest(this);
%%doThing(17);
assert(read_count == 1);
}
2016-12-25 23:31:57 +00:00
// TODO const assert = @import("std").debug.assert;
fn assert(ok: bool) {
if (!ok)
@unreachable();
}