mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-16 05:31:33 -04:00
10 lines
157 B
Zig
10 lines
157 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
|