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