aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/redefinition_of_struct.zig
blob: dc6d4abeebeaa87f43c4908fdd0c14bac4973c72 (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