# New Ticket Created by  Ron Schmidt 
# Please include the string:  [perl #61324]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61324 >


As discussed on IRC today 12/11:

my $x; say $x, 2;
Outputs: 2\n
my $x = undef; say $x, 2;
Outputs: 2\n # but also warns of "Use of uninitialized value"

It has been suggested that these two cases should behave the same way 
and why they behave differently has been called into question.

It was also noted that

my @a; @a[2] = 'b'; say @a;
* and *
my @a; @a[2] = 'b'; say @a.perl;

both result in 'Null PMC access' errors.

Ron

Reply via email to