diff options
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ static void fn_exit(FnExpr *f) { static bool each_enter(Expression *e) { assert(e->kind == EXPR_EACH); EachExpr *ea = e->each; - if (ea->index && ea->index == ea->value) { + if (ea->index && ea->index == ea->value) { err_print(e->where, "The identifier for the index of an each loop must be different from the identifier for the value."); return false; } |