From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# -*- mode: perl; -*-
# use Module(); doesn't call import() - thanx for cpan testers David. M. Town
# and Andreas Marcel Riechert for spotting it. It is fixed by the same code
# that fixes require Math::BigInt, but we make a test to be sure it really
# works.
use strict;
use Test::More tests => 1;
my $x;
use Math::BigInt ();
$x = Math::BigInt->new(1);
++$x;
is($x, 2, '$x = Math::BigInt->new(1); ++$x;');