Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
non-exhaustive_enum_field_non_final.zig
pretty
plain
permalink
blame
history
•
9 lines
•
120 B
1
const B = enum(u1) {
2
a,
3
_,
4
b,
5
};
6
7
// error
8
//
9
// :3:5: error: '_' field of non-exhaustive enum must be last