mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
10 lines
182 B
Zig
10 lines
182 B
Zig
pub fn main() void {
|
|
var i = 0;
|
|
for ("n") |i| {}
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :3:16: error: capture 'i' shadows local variable from outer scope
|
|
// :2:9: note: previous declaration here
|