Subject: | can't install on 5.6.1 |
This test causes 5.6.1 to die:
is( $db->[-6], undef, "-6th index is undef" );
It's in 04_array.t This is because is uses a prototype, which ends up doing this:
Modification of non-creatable value...
This fixes the test:
is( ($db->[-6] || undef), undef, "-6th index is undef" );
(thanks for the simple fix, HDP)
Automated installs on crufty perls are broken without this fix.
--
rjbs