Subject: | Test case for 'fix' in output |
Sometimes Data::Dump outputs the string 'fix' instead of the data
structure. Here is a test case that triggers it:
%h = (A => [ [] ]);
$h{B} = [ @{$h{A}} ];
use Data::Dump qw(dump);
print dump \%h;