On Mon, Sep 25, 2000 at 09:10:49PM -0700, Nathan Wiger wrote:
>    if ( want->{count} > 2 ) { return $one, $two }
> 
> Will that be interpreted as:
> 
>    'want'->{count}
>    want()->{count}
> 
> To be consistent, it should mean the first one. That is, the infix
> operator -> should always autoquote the bareword to the left. Am I
> correct in assuming that's what you meant?

Yes.  Use want()->{count} instead.  Or, better, 

      use want;
      wantCount;

Ilya

Reply via email to