| Current Path : /proc/thread-self/root/usr/share/doc/perl-Test-LeakTrace/example/ |
| Current File : //proc/thread-self/root/usr/share/doc/perl-Test-LeakTrace/example/script.pl |
#!/usr/bin/perl -w
use strict;
use Test::LeakTrace::Script -lines;
use Scalar::Util qw(weaken);
{
my %a;
my %b;
$a{b} = \%b;
$b{a} = \%a;
}
print "done.\n";