| Current Path : /proc/thread-self/root/proc/self/root/usr/share/doc/perl-Test-LeakTrace/t/ |
| Current File : //proc/thread-self/root/proc/self/root/usr/share/doc/perl-Test-LeakTrace/t/12_padstale.t |
#!/usr/bin/perl -w
use strict;
use Test::More tests => 1;
use Test::LeakTrace;
sub foo{
my $foo = 42;
my @array;
my %hash;
[\$foo, \@array, \%hash];
}
no_leaks_ok \&foo, 'PADSTALE sv is not a memory leak';