in reply to Re: Unquoted hash slice keys with use strict 'subs'
in thread Unquoted hash slice keys with use strict 'subs'

I don't think any backpedaling would be necessary if you want

$hash{foo,bar} => $hash{'foo','bar'} $hash{foo,bar()} => $hash{'foo',bar()}

Or are you saying you should get something else from the second line?

By the way, Perl's parser is an LR parser, and they can't backpedal.