zig/test/cases/switch_prong_implicit_cast.zig

23 lines
474 B
Zig
Raw Normal View History

2017-01-05 16:57:48 +08:00
const assert = @import("std").debug.assert;
const FormValue = union(enum) {
One: void,
Two: bool,
2016-12-26 07:31:57 +08:00
};
2018-02-01 11:48:40 +08:00
fn foo(id: u64) !FormValue {
return switch (id) {
2018-05-29 08:23:55 +08:00
2 => FormValue{ .Two = true },
1 => FormValue{ .One = {} },
else => return error.Whatever,
};
}
2017-05-24 09:38:31 +08:00
test "switch prong implicit cast" {
const result = switch (foo(2) catch unreachable) {
2016-12-26 07:31:57 +08:00
FormValue.One => false,
FormValue.Two => |x| x,
};
assert(result);
}