Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/perl-Test-LeakTrace/example/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/perl-Test-LeakTrace/example/leaked_refs.pl

#!/usr/bin/perl -w

use strict;
use Test::LeakTrace;
use Data::Dumper;

my @refs = leaked_refs{
	my %a;
	my %b;

	$a{b} = \%b;
	$b{a} = \%a;
};
print Data::Dumper->Dump([\@refs], ['*leaked']);