summaryrefslogtreecommitdiff
path: root/cpan/List-Util/t/multicall-refcount.t
blob: 1d6fb5980814172b53c6e054365bfdb0b3e85d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use Test::More tests => 1;

use List::Util 'first';

our $comparison;

sub foo {
   if( $comparison ) {
      return 1;
   }
   else {
      local $comparison = 1;
      first \&foo, 1,2,3;
   }
}

for(1,2){
   foo();
}

ok( "Didn't crash calling recursively" );