Subject: | Math::BigInt::Named use's itself rather than Math::BigInt |
Named.pm starts with the following:
package Math::BigInt::Named;
require 5.006001;
use strict;
use Math::BigInt::Named;
That last line was probably meant to be:
use Math::BigInt;
Without this change, if you try and use the module you get a fatal error:
Can't locate object method "new" via package "Math::BigInt::Named" at ...