http://qs321.pair.com?node_id=1001362

schetchik has asked for the wisdom of the Perl Monks concerning the following question:

Hello!

Could you explain, why does wrong dereference make my Perl out of memory

$ perl -e 'my $a = [{ test => { val => 1 } }, { test => { val => 2} }] +;print $a->{test}->{val}, "\n"' Out of memory!
I use perl 5.8.8

Thank you