in reply to Re: new <class> or <class>->new()?
in thread new <class> or <class>->new()?

CGI->new
is ambiguous as well. Are you calling CGI::new() here, or CGI()->new()? If you want to be clear, write:
CGI::->new
which is not ambiguous.