aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/array_access_of_undeclared_identifier.zig
blob: 0a96a0f9751d6cbfac8743f76b489aef9584d3ab (plain)
1
2
3
4
5
6
7
export fn f() void {
    i[i] = i[i];
}

// error
//
// :2:5: error: use of undeclared identifier 'i'