mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
9 lines
179 B
Zig
9 lines
179 B
Zig
var testing: i64 = 10;
|
|
pub fn main() void {
|
|
var testing: i64 = 20;
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :3:9: error: local variable shadows declaration of 'testing'
|
|
// :1:1: note: declared here
|