Your IP : 216.73.217.90


Current Path : /proc/self/root/proc/thread-self/root/usr/share/doc/perl-Test-LeakTrace/t/
Upload File :
Current File : //proc/self/root/proc/thread-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';