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


As discussed at YAPC::EU today...

my Array $array;
$array[0] = "hello I'm not here"; # No autovivfication, no exception
say $array.perl; # It's still the Array type object

my Array $another_array;
say $another_array.perl; #
say $another_array[0]; # Oh dear, the type object is muted

my Hash $hash;
$hash<foo> = 'bar'; # No autovivfication. Exception - you tried to access
$!storage

Reply via email to