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

// error
// backend=stage2
// target=native
//
// :2:5: error: use of undeclared identifier 'i'