>>> "AR" == Alex Rozenman <[email protected]> writes:
> 1. Visibility of explicitly defined symbol references.
> Joel has proposed that every explicitly defined name will completely hide
> the corresponding symbol:
> a) exp: exp[left] '+' exp[right] { $$ = $left + $right; } // correct (both
> approaches)
> b) exp: exp[left] '+' exp { $$ = $left + $exp; } // correct, possibly
> warning
Huh, that's not what I had understood. I'd vote for an error here.
