mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
10 lines
166 B
Zig
10 lines
166 B
Zig
|
pub fn main() void {
|
||
|
var i = 0;
|
||
|
if (true) |i| {}
|
||
|
}
|
||
|
|
||
|
// error
|
||
|
//
|
||
|
// :3:16: error: redeclaration of local variable 'i'
|
||
|
// :2:9: note: previous declaration here
|