Subject: | Safe in compatible with Devel::Cover |
The attached test file passes if run normally but fails if run under
Devel::Cover. I have managed to work round this by dropping a dummy
Safe.pm into blib/lib which is why I decided to send this as a Safe bug
rather than a Devel::Cover. However I accept it could go either way.
Subject: | a.t |
use Test::More tests => 1;
use Safe;
my $c = Safe->new->reval("\$D = {};;\$D");
ok($c);