aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/redefinition_of_enums.zig
blob: d3f395378166c9c79ee7ef4b1b5102b058272bf2 (plain)
1
2
3
4
5
6
7
8
const A = enum { x };
const A = enum { x };

// error
//
// :1:7: error: duplicate struct member name 'A'
// :2:7: note: duplicate name here
// :1:1: note: struct declared here