Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
enum_backed_by_comptime_int.zig
pretty
plain
permalink
blame
history
•
8 lines
•
140 B
1
const E = enum(comptime_int) { a };
2
comptime {
3
_ = E.a;
4
}
5
6
// error
7
//
8
// :1:16: error: expected integer tag type, found 'comptime_int'