The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!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";