Subject: | AnyEvent::Loop hangs if autovivification 0.13 is loaded |
Loading AnyEvent::Loop (pure-Perl implementation of AnyEvent event loop) hangs if autovivification 0.13 is already loaded (see the attached test).
This often causes problem because AnyEvent::Loop is usually loaded lazily when an AnyEvent method is called for the first time.
Subject: | anyevent_loop.t |
use strict;
use warnings;
use Test::More;
{
no autovivification;
}
use AnyEvent::Loop;
use AnyEvent;
pass("done");
done_testing;