```zig test { const E = enum { a, b, c }; const a = E.a; switch (a) { .a => {}, else => {}, .c => {}, } } ``` report should point to `test.zig:7:9:`