Files
zig/test/cases/compile_errors/redefinition_of_global_variables.zig
2023-06-19 12:34:42 -07:00

10 lines
155 B
Zig

var a: i32 = 1;
var a: i32 = 2;
// error
// backend=stage2
// target=native
//
// :2:1: error: redeclaration of 'a'
// :1:1: note: other declaration here