DEBSOURCES
Skip Quicknav
sources / libtest-leaktrace-perl / 0.17-1 / example / simple.pl
1234567891011121314
#!perl -w use strict; use Test::LeakTrace; my($mode) = @ARGV; leaktrace{ my %a; my %b; $a{b} = \%a; $b{a} = \%b; } $mode;