aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/redefinition_of_struct.zig
blob: 22852966dbc25d3945edbad3792ef51f842b5d92 (plain)
1
2
3
4
5
6
7
8
9
const A = struct { x: i32 };
const A = struct { y: i32 };

// error
// backend=stage2
// target=native
//
// :2:1: error: redeclaration of 'A'
// :1:1: note: other declaration here