2017-01-05 00:57:48 -08:00
|
|
|
const assert = @import("std").debug.assert;
|
|
|
|
|
2016-09-22 23:00:23 -07:00
|
|
|
var read_count: u64 = 0;
|
|
|
|
|
2018-02-02 11:26:14 -08:00
|
|
|
fn readOnce() error!u64 {
|
2016-09-22 23:00:23 -07:00
|
|
|
read_count += 1;
|
|
|
|
return read_count;
|
|
|
|
}
|
|
|
|
|
2017-12-03 17:43:56 -08:00
|
|
|
const FormValue = union(enum) {
|
2016-09-22 23:00:23 -07:00
|
|
|
Address: u64,
|
|
|
|
Other: bool,
|
2016-12-25 15:31:57 -08:00
|
|
|
};
|
2016-09-22 23:00:23 -07:00
|
|
|
|
2018-02-02 11:26:14 -08:00
|
|
|
fn doThing(form_id: u64) error!FormValue {
|
2016-09-22 23:00:23 -07:00
|
|
|
return switch (form_id) {
|
2018-01-07 13:51:46 -08:00
|
|
|
17 => FormValue { .Address = try readOnce() },
|
2016-09-22 23:00:23 -07:00
|
|
|
else => error.InvalidDebugInfo,
|
2017-12-21 21:50:30 -08:00
|
|
|
};
|
2016-09-22 23:00:23 -07:00
|
|
|
}
|
|
|
|
|
2017-05-23 18:38:31 -07:00
|
|
|
test "switch prong returns error enum" {
|
2018-01-08 21:07:01 -08:00
|
|
|
switch (doThing(17) catch unreachable) {
|
2017-04-23 16:59:55 -07:00
|
|
|
FormValue.Address => |payload| { assert(payload == 1); },
|
|
|
|
else => unreachable,
|
|
|
|
}
|
2016-09-22 23:00:23 -07:00
|
|
|
assert(read_count == 1);
|
|
|
|
}
|