[perl #125277] [LTA] error message when using the wrong sigil with an @array or %hash

2017-10-02 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Yes, I'm happy with it too. No need for perl 5 error message here (also, please, let's have less perl 5 error messages). testneeded. Also, here's how the error message was changing over time: https://gist.github.com/Whateverable/2373e732b2c3c10f643fa8eb5c5470a7 On 2016-07-07 06:52:35, coke wrote

[perl #125277] [LTA] error message when using the wrong sigil with an @array or %hash

2016-07-07 Thread Will Coleda via RT
On Fri May 29 07:28:12 2015, r...@hoelz.ro wrote: > For example: > > > my @array = 1, 2, 3; > > my %hash = :foo(1), :bar(2); > > > > say $array[0]; # Variable '$array' is not declared. Did you mean any > > of these? > > > > say $hash{'foo'}; # Variable '$hash' is not declared. Did you mean > > an

[perl #125277] LTA error message when using the wrong sigil with an @array or %hash

2015-05-29 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125277] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125277 > For example: > my @array = 1, 2, 3; > my %hash = :foo(1), :bar(2); > > say $array[0]; # Va