zig/test/cases/switch_prong_implicit_cast.zig

31 lines
533 B
Zig
Raw Normal View History

2016-12-26 07:31:57 +08:00
const FormValue = enum {
One,
Two: bool,
2016-12-26 07:31:57 +08:00
};
error Whatever;
fn foo(id: u64) -> %FormValue {
switch (id) {
2 => FormValue.Two { true },
1 => FormValue.One,
else => return error.Whatever,
}
}
fn switchProngImplicitCast() {
2016-12-26 07:31:57 +08:00
@setFnTest(this);
const result = switch (%%foo(2)) {
2016-12-26 07:31:57 +08:00
FormValue.One => false,
FormValue.Two => |x| x,
};
assert(result);
}
2016-12-26 07:31:57 +08:00
// TODO const assert = @import("std").debug.assert;
fn assert(ok: bool) {
if (!ok)
@unreachable();
}