http://www.perlmonks.org?node_id=1022655


in reply to perl 5.12 BSD portability (CPAN test result)...print

Hmmm... mysterious. Try adding this to your module:

use IO::File (); use IO::Handle ();
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name