1const E = enum(comptime_int) { a };
2comptime {
3 _ = E.a;
4}
5
6// error
7//
8// :1:16: error: expected integer tag type, found 'comptime_int'