Skip to content

Instantly share code, notes, and snippets.

@paulgrove
Created November 10, 2014 18:09
Show Gist options
  • Save paulgrove/208a620258e624039dae to your computer and use it in GitHub Desktop.
Save paulgrove/208a620258e624039dae to your computer and use it in GitHub Desktop.
example test for circular reference
{
my $d = deferred;
$d->then(sub {$d}, sub{});
weaken($d);
find_cycle $d if $d;
ok !$d, "Callback with \$d";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment