Closed snoopyjc closed 1 year ago
Referencing an array element that doesn't exist shouldn't create it. For example (from Date::Manip::Obj):
@arr = (); $r = $arr[0]; assert(!defined $r); assert(scalar(@arr) == 0);
Fixed in v1.030
Referencing an array element that doesn't exist shouldn't create it. For example (from Date::Manip::Obj):