zig/test/cases/compile_errors/redefinition_of_struct.zig
2022-06-30 09:57:38 +02:00

10 lines
185 B
Zig

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